-
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) · 807 Bytes
/
package.json
File metadata and controls
45 lines (45 loc) · 807 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": "node-nvdb-client",
"version": "0.0.1",
"description": "Access the NVDB API v2",
"license": "MIT",
"repository": "anderser/node-nvdb-client",
"author": {
"name": "Anders Eriksen",
"email": "anders.eriksen@bt.no",
"url": "bt.no"
},
"bin": "cli.js",
"engines": {
"node": ">=4"
},
"scripts": {
"test": "xo && ava"
},
"files": [
"index.js",
"cli.js",
"lib/client.js"
],
"keywords": [
"cli-app",
"cli",
""
],
"dependencies": {
"http-debug": "^0.1.2",
"lodash": "^4.15.0",
"meow": "^3.7.0",
"node-rest-client": "^2.0.1",
"terraformer": "^1.0.6",
"turf": "^3.0.14",
"wellknown": "^0.5.0"
},
"devDependencies": {
"ava": "^0.15.2",
"xo": "^0.16.0"
},
"xo": {
"esnext": true
}
}