-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
72 lines (72 loc) · 1.38 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
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "@statickit/cli",
"version": "0.8.0",
"description": "The StaticKit command line interface",
"keywords": [
"dotenv",
"statickit"
],
"homepage": "https://github.com/unstacked/statickit-cli#readme",
"bugs": {
"url": "https://github.com/unstacked/statickit-cli/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/unstacked/statickit-cli.git"
},
"license": "MIT",
"author": "Derrick Reimer",
"files": [
"src"
],
"bin": {
"statickit": "bin/statickit"
},
"scripts": {
"release": "np",
"test": "jest"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,css,json,md}": [
"npx prettier --write",
"git add"
],
"package.json": [
"npx sort-package-json",
"git add"
]
},
"dependencies": {
"@statickit/deploy": "^0.3.0",
"axios": "^0.19.0",
"chalk": "^2.4.2",
"common-tags": "^1.8.0",
"dotenv": "^8.2.0",
"execa": "^2.0.4",
"ora": "^4.0.2",
"pacote": "^10.1.3",
"yargs": "^15.0.2"
},
"devDependencies": {
"husky": "^3.0.9",
"jest": "^24.9.0",
"lint-staged": "^9.4.2",
"np": "^5.1.3",
"prettier": "^1.18.2",
"sort-package-json": "^1.22.1"
},
"engines": {
"node": ">= 8"
},
"publishConfig": {
"access": "public"
},
"np": {
"yarn": false
}
}