-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·48 lines (48 loc) · 1.09 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
{
"name": "kaze-cli",
"version": "0.3.1",
"description": "SaaSDK Command Line Client",
"main": "index.js",
"bin": {
"kaze": "./build/src/kaze"
},
"scripts": {
"dist": "taskr dist",
"devbuild": "taskr build",
"lint": "taskr lint",
"prespec": "npm run lint",
"test": "taskr test ",
"clean": "taskr clean",
"superclean": "taskr superclean"
},
"author": "ITI",
"license": "MIT",
"devDependencies": {
"@taskr/clear": "^1.1.0",
"@taskr/shell": "^1.1.0",
"@taskr/typescript": "^1.1.0",
"@types/chalk": "^2.2.0",
"@types/commander": "^2.11.0",
"@types/express": "^4.0.35",
"@types/node": "^7.0.12",
"pkg": "^4.2.5",
"taskr": "^1.1.0",
"tslint": "^5.8.0",
"tslint-config-standard": "^6.0.1"
},
"dependencies": {
"chalk": "^2.3.0",
"commander": "^2.11.0",
"denodeify": "^1.2.1",
"read": "^1.0.7",
"kaze-core": "git+https://git@github.com/iti-ict/kaze-core.git#master"
},
"pkg": {
"scripts": [
"build/**/*.js"
],
"assets": [
"node_modules/workspace/templates/**/*"
]
}
}