-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 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
{
"name": "dependents-editor-backend",
"version": "2.0.0",
"description": "The brains behind Dependents editor plugins",
"main": "lib/cli.js",
"scripts": {
"lint": "jscs lib test/lib test/features bin && jshint",
"tests": "mocha --compilers js:babel/register 'test/lib/**/*.js' 'test/features/**/*.js'",
"tests-watch": "mocha --watch --compilers js:babel/register 'test/lib/**/*.js' 'test/features/**/*.js'",
"test": "npm run lint && npm run tests",
"debug-test": "DEBUG=*,-mocha:*,-babel,-parse npm test"
},
"bin": {
"dependents-backend": "bin/cli.js"
},
"repository": {
"type": "git",
"url": "git://github.com/mrjoelkemp/node-dependents-editor-backend.git"
},
"keywords": [
"Dependents",
"editor",
"plugin"
],
"author": "Joel Kemp <[email protected]> (http://www.mrjoelkemp.com/)",
"license": "UNLICENSED",
"bugs": {
"url": "https://github.com/mrjoelkemp/node-dependents-editor-backend/issues"
},
"homepage": "https://github.com/mrjoelkemp/node-dependents-editor-backend#readme",
"dependencies": {
"callers": "^1.0.3",
"commander": "^2.14.1",
"debug": "^3.1.0",
"dependency-tree": "^6.0.1",
"dependents": "^3.3.0",
"filing-cabinet": "^1.14.0",
"is-plain-object": "^2.0.4",
"mixpanel": "^0.4.0",
"node-source-walk": "^3.3.0",
"node-tictoc": "^1.3.0",
"object-assign": "^4.1.1",
"q": "^1.5.1",
"taxicab": "^3.0.1",
"tree-pic": "^1.0.1"
},
"devDependencies": {
"babel": "~5.8.38",
"file-exists": "~1.0.0",
"jscs": "~2.1.0",
"jscs-preset-mrjoelkemp": "~1.0.0",
"jshint": "~2.8.0",
"mocha": "~2.2.5",
"mock-fs": "^4.4.2",
"os-tmpdir": "~1.0.1",
"rewire": "~3.0.2",
"sinon": "~4.4.2"
}
}