forked from alanshaw/david
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.06 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
{
"name": "david",
"version": "7.0.0",
"description": "Node.js module that tells you when your project npm dependencies are out of date.",
"main": "lib/david.js",
"repository": {
"type": "git",
"url": "git://github.com/alanshaw/david.git"
},
"bugs": {
"url": "https://github.com/alanshaw/david/issues"
},
"author": "Alan Shaw",
"bin": {
"david": "bin/david.js"
},
"scripts": {
"test": "standard && node bin/david && istanbul cover node_modules/.bin/tape test/*.js",
"coveralls": "cat ./coverage/lcov.info | coveralls"
},
"license": "MIT",
"files": [
"bin",
"lib",
"LICENCE"
],
"dependencies": {
"async": "^1.4.1",
"cli-color-tty": "^2.0.0",
"cli-table": "^0.3.1",
"minimist": "^1.1.0",
"npm": "^3.3.12",
"semver": "^5.0.1",
"xtend": "^4.0.0"
},
"devDependencies": {
"coveralls": "^2.10.0",
"istanbul": "^0.4.0",
"jshint": "^2.5.1",
"rewire": "^2.1.0",
"rimraf": "^2.3.2",
"standard": "^5.0.2",
"tape": "^4.0.0"
},
"engines": {
"node": ">=0.10.1"
}
}