-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
26 lines (26 loc) · 920 Bytes
/
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
{
"scripts": {
"postinstall": "elm-tooling install",
"all": "run-s docs lint:* test:* ;",
"docs": "elm make --docs=docs.json",
"docs:preview": "elm-doc-preview",
"lint:format": "elm-format --yes src tests review/src",
"lint:review": "elm-review",
"lint": "run-s lint:* ;",
"test:elm": "elm-test-rs",
"test:package": "node elm-review-package-tests/check-previews-compile.js",
"test": "run-s test:* ;",
"elm-bump": "npm-run-all --print-name --silent --sequential test bump-version 'test:review -- --fix-all-without-prompt' update-examples",
"bump-version": "(yes | elm bump)",
"update-examples": "node maintenance/update-examples-from-preview.js"
},
"dependencies": {
"elm-doc-preview": "^6.0.1",
"elm-review": "^2.12.0",
"elm-tooling": "^1.15.1",
"fs-extra": "^11.3.0",
"glob": "^11.0.1",
"npm-run-all": "^4.1.5"
},
"license": "MIT"
}