forked from alanshaw/david
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1007 Bytes
/
package.json
File metadata and controls
45 lines (45 loc) · 1007 Bytes
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
{
"name": "david",
"version": "3.3.1",
"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": {
"coveralls": "jscoverage lib && DAVID_COV=1 nodeunit --reporter=lcov test | coveralls",
"lint": "jshint .",
"test": "jshint . && nodeunit test"
},
"license": "MIT",
"files": [
"bin",
"lib",
"LICENCE"
],
"dependencies": {
"async": "^0.9.0",
"npm": "~1.4.4",
"optimist": "~0.6.0",
"semver": "^3.0.1"
},
"devDependencies": {
"coveralls": "^2.10.0",
"jscoverage": "^0.5.3",
"jshint": "^2.5.1",
"nodeunit": "^0.9.0",
"rewire": "^2.1.0",
"rimraf": "~2.2.2"
},
"engines": {
"node": "~0.10.1 || ~0.11.0"
}
}