UNPKG

1.1 kBJSONView Raw
1{
2 "name": "david",
3 "version": "12.0.0",
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": "standard && nyc --reporter=lcov --reporter=text tape test/*.js",
19 "coveralls": "cat ./coverage/lcov.info | coveralls"
20 },
21 "license": "MIT",
22 "files": [
23 "bin",
24 "lib",
25 "LICENCE"
26 ],
27 "dependencies": {
28 "async": "^3.1.0",
29 "cli-color-tty": "^2.0.0",
30 "cli-table": "^0.3.1",
31 "exit": "^0.1.2",
32 "minimist": "^1.1.0",
33 "multimatch": "^4.0.0",
34 "npm": "^6.10.2",
35 "semver": "^6.3.0",
36 "xtend": "^4.0.0"
37 },
38 "devDependencies": {
39 "coveralls": "^3.0.5",
40 "nyc": "^14.1.1",
41 "rewire": "^4.0.1",
42 "rimraf": "^2.6.3",
43 "standard": "^14.3.1",
44 "tape": "^4.11.0"
45 },
46 "engines": {
47 "node": ">=0.10.1"
48 }
49}