-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.26 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
{
"name": "elm-xref",
"version": "4.1.1",
"description": "Cross referencing tool for Elm - find usages and unused code",
"author": "Ilias Van Peer",
"license": "BSD-3-Clause",
"repository": "zwilias/elm-xref",
"bin": {
"elm-xref": "bin/elm-xref"
},
"dependencies": {
"bluebird": "^3.5.1",
"compare-versions": "^3.5.1",
"fs-extra": "^6.0.1",
"klaw": "^2.1.1",
"minimist": "^1.2.0",
"semver": "^6.3.0",
"semver-sort": "^1.0.0",
"through2": "^2.0.3"
},
"devDependencies": {
"elm": "latest-0.19.1",
"elm-format": "^0.8.5",
"prettier": "^1.16.4",
"tap": "^15.1.6"
},
"scripts": {
"elm": "elm make --optimize elm/Main.elm --output lib/elm.js",
"prepublishOnly": "npm run elm",
"prettier:write": "prettier --write bin/elm-xref \"lib/**.js\" \"tests/**.js\" package.json",
"prettier:check": "prettier --check bin/elm-xref \"lib/**.js\" \"tests/**.js\" package.json",
"test": "elm-format --validate elm && npm run prettier:check && tap tests/*.js"
},
"files": [
"bin",
"lib"
],
"prettier": {
"tabWidth": 4
},
"tap": {
"check-coverage": false
}
}