-
Notifications
You must be signed in to change notification settings - Fork 67
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.07 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 1.07 KB
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
{
"name": "david",
"version": "12.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 && nyc --reporter=lcov --reporter=text tape test/*.js",
"coveralls": "cat ./coverage/lcov.info | coveralls"
},
"license": "MIT",
"files": [
"bin",
"lib",
"LICENCE"
],
"dependencies": {
"async": "^3.1.0",
"cli-color-tty": "^2.0.0",
"cli-table": "^0.3.1",
"exit": "^0.1.2",
"minimist": "^1.1.0",
"multimatch": "^4.0.0",
"npm": "^6.10.2",
"semver": "^6.3.0",
"xtend": "^4.0.0"
},
"devDependencies": {
"coveralls": "^3.0.5",
"nyc": "^14.1.1",
"rewire": "^4.0.1",
"rimraf": "^2.6.3",
"standard": "^14.3.1",
"tape": "^4.11.0"
},
"engines": {
"node": ">=0.10.1"
}
}