forked from rtfeldman/node-test-runner
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.32 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
{
"name": "elm-test",
"version": "0.18.13-beta",
"description": "Run elm-test suites.",
"main": "elm-test.js",
"engines": {
"node": ">=4.7.0"
},
"scripts": {
"install": "node install.js",
"flow": "flow",
"test": "mocha tests"
},
"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": {
"binstall": "1.2.0",
"chalk": "2.1.0",
"chokidar": "1.6.0",
"cross-spawn": "4.0.0",
"find-parent-dir": "^0.3.0",
"firstline": "1.2.1",
"fs-extra": "0.30.0",
"fsevents": "^1.1.2",
"glob": "^7.1.1",
"lodash": "4.13.1",
"minimist": "^1.2.0",
"murmur-hash-js": "1.0.0",
"node-elm-compiler": "4.3.3",
"split": "^1.0.1",
"supports-color": "4.2.0",
"xmlbuilder": "^8.2.2"
},
"optionalDependencies": {
"fsevents": "1.1.2"
},
"devDependencies": {
"flow-bin": "0.48.0",
"mocha": "^3.4.1",
"prettier": "1.5.2",
"shelljs": "0.7.3",
"xml2js": "^0.4.17"
}
}