-
Notifications
You must be signed in to change notification settings - Fork 79
/
package.json
68 lines (68 loc) · 1.73 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "elm-test",
"version": "0.19.1-revision12",
"description": "Run elm-test suites.",
"main": "elm-test.js",
"engines": {
"node": ">=12.20.0"
},
"scripts": {
"prepare": "elm-tooling install",
"test": "npm run check && npm run test-only",
"flow": "flow",
"lint": "eslint --report-unused-disable-directives .",
"review": "cd elm && elm-review",
"elm-test": "cd elm && node ../bin/elm-test",
"test-only": "mocha tests && npm run elm-test",
"check": "flow check && npm run lint && npm run format:check && npm run review",
"format:check": "prettier --check . && elm-format elm --validate",
"format:write": "prettier --write . && elm-format elm --yes"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rtfeldman/node-test-runner.git"
},
"bin": {
"elm-test": "bin/elm-test"
},
"files": [
"bin",
"lib",
"templates",
"elm/src"
],
"keywords": [
"elm",
"elm-test",
"cli"
],
"author": "Richard Feldman",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/rtfeldman/node-test-runner/issues"
},
"homepage": "https://github.com/rtfeldman/node-test-runner#readme",
"dependencies": {
"chalk": "^4.1.2",
"chokidar": "^3.5.3",
"commander": "^9.4.1",
"cross-spawn": "^7.0.3",
"elm-solve-deps-wasm": "^1.0.2",
"glob": "^8.0.3",
"graceful-fs": "^4.2.10",
"split": "^1.0.1",
"which": "^2.0.2",
"xmlbuilder": "^15.1.1"
},
"devDependencies": {
"elm-review": "2.9.1",
"elm-tooling": "1.15.1",
"eslint": "8.31.0",
"eslint-plugin-mocha": "10.1.0",
"flow-bin": "0.180.0",
"mocha": "9.2.2",
"prettier": "2.8.1",
"strip-ansi": "6.0.0",
"xml2js": "0.5.0"
}
}