forked from davidmfoley/node-trucker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.03 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
{
"name": "trucker",
"version": "0.7.3",
"bin": {
"trucker": "./cli"
},
"repository": {
"type": "git",
"url": "http://github.com/davidmfoley/node-trucker.git"
},
"keywords": [
"developer",
"file",
"mv",
"cli",
"refactor"
],
"main": "",
"description": "Hauls your files around without breaking require dependencies",
"dependencies": {
"babylon": "^6.9.0",
"coffee-script": "1.6.0",
"ignore": "^2.2.19",
"minimatch": "^3.0.0",
"mkdirp": "~0.3",
"optimist": "~0.6.0",
"progress": "~1.1"
},
"devDependencies": {
"chai": "^1.9.2",
"eslint": "^1.3.1",
"istanbul": "^0.4.0",
"jshint": "2.4.0",
"mocha": "~1.6.0",
"mocha-fengshui-reporter": "^1.0.0"
},
"engines": {
"node": "0.10.x",
"npm": "1.1.x"
},
"scripts": {
"lint": "eslint lib/",
"test": "MOCHA_FENGSHUI_MODE=minimal mocha test/ -R mocha-fengshui-reporter",
"cover": "MOCHA_FENGSHUI_MODE=minimal istanbul cover _mocha test/ && open coverage/lcov-report/index.html"
}
}