forked from rtfeldman/node-test-runner
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 1.68 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
69
70
71
{
"name": "elm-test",
"version": "0.19.1-revision3",
"description": "Run elm-test suites.",
"main": "elm-test.js",
"engines": {
"node": ">=8.0.0"
},
"scripts": {
"flow": "flow",
"lint": "eslint .",
"test-only": "mocha tests && cd elm && node ../bin/elm-test",
"test": "flow check && npm run lint && npm run format:check && npm run test-only",
"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/elm.json",
"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": "3.0.0",
"chokidar": "3.4.0",
"cross-spawn": "7.0.3",
"elmi-to-json": "1.3.0",
"find-parent-dir": "^0.3.0",
"firstline": "2.0.2",
"fs-extra": "8.1.0",
"glob": "7.1.6",
"minimist": "1.2.5",
"murmur-hash-js": "1.0.0",
"split": "1.0.1",
"supports-color": "7.1.0",
"temp": "0.9.1",
"which": "2.0.2",
"xmlbuilder": "^15.1.0"
},
"devDependencies": {
"byline": "5.0.0",
"elm": "0.19.1-3",
"elm-format": "0.8.3",
"eslint": "7.3.1",
"flow-bin": "0.128.0",
"mocha": "7.2.0",
"prettier": "2.0.5",
"shelljs": "0.8.4",
"strip-ansi": "6.0.0",
"xml2js": "0.4.23"
}
}