forked from rtfeldman/node-test-runner
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.61 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
{
"name": "elm-test",
"version": "0.19.0-rev6",
"description": "Run elm-test suites.",
"main": "elm-test.js",
"engines": {
"node": ">=8.0.0"
},
"scripts": {
"flow": "flow",
"test": "flow check && npm run prettier:check && mocha tests && cd elm && node ../bin/elm-test",
"prettier:check": "prettier \"lib/**/*.js\" \"tests/**/*.js\" --list-different",
"prettier:write": "prettier \"lib/**/*.js\" \"tests/**/*.js\" --write"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rtfeldman/node-test-runner.git"
},
"bin": {
"elm-test": "bin/elm-test"
},
"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": "2.1.0",
"chokidar": "2.1.2",
"cross-spawn": "4.0.0",
"elmi-to-json": "0.19.3",
"find-parent-dir": "^0.3.0",
"firstline": "1.2.1",
"fs-extra": "0.30.0",
"glob": "7.1.1",
"lodash": "4.17.11",
"minimist": "^1.2.0",
"murmur-hash-js": "1.0.0",
"node-elm-compiler": "5.0.3",
"split": "1.0.1",
"supports-color": "4.2.0",
"temp": "0.8.3",
"which": "1.3.1",
"xmlbuilder": "^8.2.2"
},
"optionalDependencies": {
"fsevents": "1.2.4"
},
"devDependencies": {
"byline": "^5.0.0",
"elm": "0.19.0-bugfix6",
"flow-bin": "0.48.0",
"mocha": "5.2.0",
"prettier": "^1.14.3",
"shelljs": "0.7.3",
"strip-ansi": "^5.0.0",
"xml2js": "0.4.17"
}
}