-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
50 lines (50 loc) · 1.37 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
{
"name": "elm-coverage",
"version": "0.4.1",
"license": "BSD-3-Clause",
"homepage": "https://github.com/zwilias/elm-coverage#readme",
"repository": "zwilias/elm-coverage",
"main": "install.js",
"devDependencies": {
"chai": "^4.2.0",
"chai-json-schema-ajv": "^2.0.1",
"chai-match-pattern": "^1.1.0",
"mocha": "^9.1.3",
"shelljs": "^0.8.5"
},
"dependencies": {
"binwrap": "^0.2.2",
"bluebird": "^3.7.2",
"cross-spawn": "^5.1.0",
"elm": "^0.19.1-5",
"elm-test": "^0.19.1-revision7",
"find": "^0.2.9",
"fs-extra": "^4.0.3",
"lodash": "^4.17.15",
"moment": "^2.24.0",
"opn": "^5.5.0",
"request": "^2.88.0",
"table": "^6.8.0",
"tmp": "0.0.33",
"touch": "^3.1.0",
"upgrade": "^1.1.0",
"yargs": "^15.0.2"
},
"bin": {
"elm-coverage": "bin/elm-coverage",
"elm-instrument": "bin/elm-instrument"
},
"files": [
"bin/",
"lib/",
"install.js",
"kernel-src"
],
"scripts": {
"make": "elm make --optimize src/Analyzer.elm --output lib/analyzer.js",
"prepublishOnly": "npm run make && npm run test",
"test": "binwrap-test && npm run test:unit",
"test:unit": "mocha tests",
"install": "binwrap-install"
}
}