UNPKG

1.1 kBJSONView Raw
1{
2 "name": "david",
3 "version": "6.0.2",
4 "description": "Node.js module that tells you when your project npm dependencies are out of date.",
5 "main": "lib/david.js",
6 "repository": {
7 "type": "git",
8 "url": "git://github.com/alanshaw/david.git"
9 },
10 "bugs": {
11 "url": "https://github.com/alanshaw/david/issues"
12 },
13 "author": "Alan Shaw",
14 "bin": {
15 "david": "bin/david.js"
16 },
17 "scripts": {
18 "test": "jshint . && node bin/david && istanbul cover node_modules/.bin/tape test/*.js",
19 "coveralls": "cat ./coverage/lcov.info | coveralls",
20 "lint": "jshint ."
21 },
22 "license": "MIT",
23 "files": [
24 "bin",
25 "lib",
26 "LICENCE"
27 ],
28 "dependencies": {
29 "async": "^0.9.0",
30 "cli-color-tty": "^1.0.1",
31 "cli-table": "^0.3.1",
32 "minimist": "^1.1.0",
33 "npm": "^2.0.2",
34 "semver": "^4.0.0",
35 "xtend": "^4.0.0"
36 },
37 "devDependencies": {
38 "coveralls": "^2.10.0",
39 "istanbul": "^0.3.5",
40 "jshint": "^2.5.1",
41 "rewire": "^2.1.0",
42 "rimraf": "~2.2.2",
43 "tape": "^3.0.3"
44 },
45 "engines": {
46 "node": "~0.10.1 || ~0.11.0"
47 }
48}