forked from typicode/pinst
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·79 lines (79 loc) · 1.94 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
73
74
75
76
77
78
79
{
"name": "contaazul-pinst",
"version": "1.0.2",
"description": "Enable or disable npm postinstall hook",
"main": "lib/bin.js",
"bin": {
"ca-pinst": "./lib/bin.js"
},
"files": [
"lib/bin.js",
"lib/index.js"
],
"scripts": {
"preinstall": "yarn dlx only-allow yarn",
"postinstall": "husky install",
"prepack": "node ./lib/bin.js --silent --disable",
"postpack": "node ./lib/bin.js --silent --enable",
"precommit": "yarn lint-staged",
"test": "jest --coverage",
"lint": "eslint .",
"lint:fix": "yarn lint --fix",
"release": "release-it --config release-it.config.js"
},
"lint-staged": {
"*.js": [
"yarn lint:fix"
],
"*.{json,md,yml}": [
"prettier --write"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/ContaAzul/pinst.git"
},
"keywords": [
"npm",
"preinstall",
"postinstall",
"lifecycle",
"dev",
"devpreinstall",
"devpostinstall"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/ContaAzul/pinst/issues"
},
"homepage": "https://github.com/ContaAzul/pinst#readme",
"devDependencies": {
"@commitlint/cli": "^17.4.4",
"@commitlint/config-conventional": "^17.4.4",
"@commitlint/format": "^17.4.4",
"@release-it/conventional-changelog": "^4.3.0",
"conventional-changelog": "^3.1.25",
"conventional-changelog-conventionalcommits": "^4.6.3",
"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",
"lint-staged": "^11.0.0",
"prettier": "2.2.1",
"release-it": "^14.14.3",
"tempy": "^1.0.0"
},
"engines": {
"node": ">=14.0.0"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"jest": {
"testURL": "http://localhost/"
},
"packageManager": "[email protected]"
}