-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 889 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
{
"name": "@kt3k/subcommand",
"version": "1.0.0",
"description": "Utility for dispatching subcommand based on filename",
"main": "index.js",
"scripts": {
"test": "tape test.js",
"cov": "nyc --reporter=lcov npm test",
"codecov": "npm run cov && codecov"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kt3k/minirocket.git"
},
"keywords": [
"minimist",
"cli",
"minimisted",
"cli-dispatch",
"actions"
],
"author": "Yoshiya Hinosawa <stibium121@gmail.com> (https://twitter.com/kt3k)",
"license": "MIT",
"bugs": {
"url": "https://github.com/kt3k/minirocket/issues"
},
"homepage": "https://github.com/kt3k/minirocket#readme",
"devDependencies": {
"codecov": "^3.8.3",
"nyc": "^11.0.0",
"standard": "^10.0.0",
"tape": "^4.6.0"
},
"dependencies": {
"cli-dispatch": "^1.3.0"
}
}