-
Notifications
You must be signed in to change notification settings - Fork 32
/
package.json
44 lines (44 loc) · 934 Bytes
/
package.json
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
{
"name": "rekcod",
"version": "3.0.0",
"description": "docker inspect → docker run",
"main": "index.js",
"bin": {
"rekcod": "cli.js"
},
"files": [
"cli.js",
"index.js"
],
"engines": {
"node": ">=10"
},
"scripts": {
"pretest": "standard",
"test": "nyc --use-spawn-wrap=true tape test/test*.js",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"release": "standard-version"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nexdrew/rekcod.git"
},
"keywords": [
"docker",
"inspect",
"run"
],
"author": "nexdrew",
"license": "ISC",
"bugs": {
"url": "https://github.com/nexdrew/rekcod/issues"
},
"homepage": "https://github.com/nexdrew/rekcod#readme",
"devDependencies": {
"coveralls": "^3.0.7",
"nyc": "^15.0.1",
"standard": "^14.3.1",
"standard-version": "^8.0.0",
"tape": "^5.0.0"
}
}