-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
61 lines (61 loc) · 1.16 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
{
"name": "@statickit/deploy",
"version": "0.3.0",
"description": "A utility for executing StaticKit deployments",
"keywords": [
"statickit"
],
"homepage": "https://github.com/unstacked/statickit-deploy#readme",
"bugs": {
"url": "https://github.com/unstacked/statickit-deploy/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/unstacked/statickit-deploy.git"
},
"license": "MIT",
"author": "Derrick Reimer",
"files": [
"src/*"
],
"main": "src/index.js",
"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": {
"axios": "^0.19.0"
},
"devDependencies": {
"husky": "^3.0.9",
"jest": "^24.9.0",
"lint-staged": "^9.4.2",
"np": "^5.1.1",
"prettier": "^1.18.2",
"sort-package-json": "^1.22.1"
},
"engines": {
"node": ">= 8"
},
"publishConfig": {
"access": "public"
},
"np": {
"yarn": false
}
}