forked from cychiuae/create-skygear-cloud-code
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
32 lines (32 loc) · 884 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
{
"name": "create-skygear-cloud-code",
"version": "0.1.1",
"bin": {
"create-skygear-cloud-code": "./bin/index.js"
},
"scripts": {
"build": "gulp build",
"ci-check": "yarn tsc && yarn lint && prettier --list-different 'src/**/*.ts'",
"format": "prettier --write --list-different 'src/**/*.ts'",
"lint": "gulp lint",
"test": "echo \"Error: no test specified\" && exit 1",
"tsc": "tsc --noEmit",
"watch": "gulp watch"
},
"author": "YinYin Chiu <[email protected]>",
"license": "Apache-2.0",
"devDependencies": {
"@types/node": "10.12.3",
"gulp": "4.0.0",
"gulp-exclude-gitignore": "1.2.0",
"gulp-tslint": "8.1.3",
"gulp-typescript": "5.0.0-alpha.3",
"prettier": "1.15.1",
"require-dir": "1.1.0",
"tslint": "5.11.0",
"typescript": "3.1.6"
},
"dependencies": {
"commander": "2.19.0"
}
}