-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 913 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 913 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
{
"name": "got-weed",
"description": "Find out what products are currently in stock at SQDC.",
"version": "0.3.4",
"main": "index.js",
"bin": "cli.js",
"engines": {
"node": ">=12.14.1"
},
"license": "AGPL-3.0",
"repository": "millette/got-weed",
"author": {
"name": "Robin Millette",
"email": "robin@millette.info",
"url": "http://robin.millette.info"
},
"dependencies": {
"fast-json-stable-stringify": "^2.1.0",
"got": "^9.6.0",
"meow": "^7.1.1"
},
"devDependencies": {
"ava": "^3.12.1",
"coveralls": "^3.1.0",
"dependency-check": "^4.1.0",
"nyc": "^15.1.0",
"pkg": "^4.4.9",
"standard": "^14.3.4"
},
"scripts": {
"pkg": "standard && pkg .",
"lint": "standard",
"test": "standard && nyc ava",
"deps": "standard && dependency-check . --no-dev",
"coverage": "nyc report --reporter=text-lcov | coveralls"
}
}