-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
57 lines (57 loc) · 1.29 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
{
"name": "pinst",
"version": "3.0.0",
"description": "Enable or disable npm postinstall hook",
"main": "index.js",
"bin": {
"pinst": "bin.js"
},
"files": [
"index.js",
"bin.js"
],
"scripts": {
"test": "jest",
"lint": "eslint .",
"fix": "npm run lint -- --fix",
"postinstall": "husky install",
"preversion": "npm test && npm run lint",
"postversion": "git push && git push --tags && npm publish",
"prepack": "node bin --disable",
"postpack": "node bin --enable"
},
"repository": {
"type": "git",
"url": "git+https://github.com/typicode/pinst.git"
},
"keywords": [
"npm",
"postinstall",
"lifecycle",
"dev",
"devpostinstall"
],
"author": "typicode <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/typicode/pinst/issues"
},
"homepage": "https://github.com/typicode/pinst#readme",
"devDependencies": {
"eslint": "^7.18.0",
"eslint-config-prettier": "^8.0.0",
"eslint-config-xo-space": "^0.26.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.3.1",
"husky": "^5.0.6",
"jest": "^26.6.3",
"prettier": "2.2.1",
"tempy": "^1.0.0"
},
"engines": {
"node": ">=12.0.0"
},
"jest": {
"testURL": "http://localhost/"
}
}