-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
35 lines (35 loc) · 1.16 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
{
"name": "elm-break-dom",
"version": "1.0.0",
"description": "",
"scripts": {
"build": "./build.sh",
"test": "run-s test:patched test:patched-without-extension",
"test:original": "env SRC_VERSION=Original mocha test/test.js",
"test:patched": "env SRC_VERSION=Patched mocha test/test.js",
"test:patched-without-extension": "env SRC_VERSION=Patched-without-extension mocha test/test.js",
"test:manual": "run-p server open:simple",
"test:extensions": "run-p server open:extensions",
"report": "nyc report --reporter=html --report-dir=public/coverage",
"server": "http-server -c-1",
"open:simple": "open-cli http://localhost:8080/simple.html",
"open:extensions": "open-cli http://localhost:8080/",
"clean": "git clean -xdf",
"netlify": "run-s build test:patched report"
},
"author": "",
"license": "MIT",
"devDependencies": {
"chalk": "^2.4.2",
"elm": "^0.19.1-1",
"express": "^4.17.1",
"http-server": "^0.11.1",
"mocha": "^6.2.0",
"npm-run-all": "^4.1.5",
"nyc": "^14.1.1",
"open-cli": "^5.0.0",
"puppeteer": "^1.20.0",
"puppeteer-to-istanbul": "^1.2.2",
"rimraf": "^3.0.0"
}
}