-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.29 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
{
"name": "wdn",
"version": "3.3.1",
"description": "NodeJS-powered directory warping",
"main": "index.js",
"bin": {
"wdn": "./bin/cli.js"
},
"bugs": {
"url": "https://github.com/greg-js/wdn/issues",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/greg-js/wdn.git"
},
"scripts": {
"test": "node node_modules/.bin/mocha",
"coverage": "node node_modules/.bin/istanbul cover _mocha -- -R spec",
"coveralls": "cat ./coverage/lcov.info | node node_modules/.bin/coveralls",
"lint": "node node_modules/.bin/eslint index.js */*.js"
},
"keywords": [
"wd",
"wdn",
"warp",
"commandline",
"navigation"
],
"author": "Gregory Scheerlinck",
"license": "MIT",
"preferGlobal": "true",
"engines": {
"node": ">=0.12"
},
"dependencies": {
"bluebird": "^3.4.1",
"chalk": "^1.1.3",
"minimist": "^1.2.0",
"omelette": "git://github.com/greg-js/omelette.git",
"node-persist": "0.0.11",
"ssh-config-parser": "git://github.com/greg-js/node-ssh-config-parser.git",
"text-table": "^0.2.0"
},
"devDependencies": {
"bdd-stdin": "^0.2.0",
"chai": "^3.5.0",
"coveralls": "^2.11.9",
"eslint": "^3.1.1",
"istanbul": "^0.4.4",
"mocha": "^2.5.3"
}
}