-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
60 lines (60 loc) · 1.34 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
52
53
54
55
56
57
58
59
60
{
"name": "@snowjs/cli",
"version": "0.0.0",
"description": "Self-hosted now deployments",
"main": "dist/index.js",
"engines": {
"node": ">=8.0.0"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc",
"watch": "tsc --watch --preserveWatchOutput",
"lint": "tslint -p . --format stylish"
},
"bin": {
"snow": "dist/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/snowjs/cli.git"
},
"author": "Peter Mikitsh <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/snowjs/cli/issues"
},
"homepage": "https://github.com/snowjs/cli#readme",
"dependencies": {
"chalk": "2.4.1",
"docker-file-parser": "1.0.4",
"mri": "1.1.1",
"source-map-support": "0.5.10"
},
"devDependencies": {
"@types/mri": "1.1.0",
"@types/node": "10.12.18",
"@types/source-map-support": "0.4.2",
"husky": "1.3.1",
"lint-staged": "8.1.0",
"prettier": "1.15.3",
"tslint": "5.12.0",
"tslint-config-prettier": "1.17.0",
"tslint-xo": "0.11.0",
"typescript": "3.2.2"
},
"prettier": {
"singleQuote": true
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,json,css,md}": [
"prettier --write",
"git add"
]
}
}