-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.22 KB
/
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
45
46
47
48
49
50
51
{
"name": "@kalisio/kli",
"description": "Kommand-Line Interface",
"version": "1.4.2",
"homepage": "https://github.com/kalisio/kli",
"main": "index.js",
"bin": {
"kli": "index.js"
},
"keywords": [
"Kalisio",
"kli",
"docs",
"cli"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/kalisio/kli.git"
},
"author": {
"name": "Kalisio contributors",
"url": "https://github.com/kalisio/kli"
},
"contributors": [],
"bugs": {
"url": "https://github.com/kalisio/kli/issues"
},
"engines": {
"node": ">= 8.0.0"
},
"scripts": {
"publish": "git push origin && git push origin --tags",
"release:patch": "npm version patch && npm publish --access=public",
"release:minor": "npm version minor && npm publish --access=public",
"release:major": "npm version major && npm publish --access=public",
"lint": "standard src/**/*.js test/**/*.js --fix",
"test": "echo \"Error: no test specified\" && exit 1"
},
"directories": {},
"dependencies": {
"commander": "^2.19.0",
"debug": "^4.1.1",
"lodash": "^4.17.11",
"shelljs": "^0.8.3"
},
"devDependencies": {
"shx": "^0.3.2",
"standard": "^12.0.1"
}
}