-
Notifications
You must be signed in to change notification settings - Fork 28
/
package.json
38 lines (38 loc) · 1.06 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
{
"name": "elm-syntax",
"version": "0.13.0-dev",
"description": "Elm syntax",
"repository": {
"type": "git",
"url": "github.com/stil4m/elm-syntax"
},
"bugs": {
"url": "https://github.com/stil4m/elm-syntax/issues"
},
"scripts": {
"test": "npm-run-all --print-name --silent --sequential test:make test:format test:run test:review",
"test:make": "elm make --docs=docs.json",
"test:format": "elm-format --validate src/ tests/",
"test:run": "elm-test",
"test:review": "elm-review",
"preview-docs": "elm-doc-preview",
"elm-bump": "npm-run-all --print-name --silent --sequential test bump-version 'test:review -- --fix-all-without-prompt'",
"bump-version": "(yes | elm bump)",
"postinstall": "elm-tooling install"
},
"author": "Mats Stijlaart",
"license": "MIT",
"keywords": [
"elm",
"syntax",
"ast"
],
"dependencies": {
"elm-doc-preview": "^5.0.5",
"elm-review": "^2.12.0",
"elm-test": "^0.19.1-revision7",
"elm-tooling": "^1.3.0",
"fdir": "^6.3.0",
"npm-run-all": "^4.1.5"
}
}