forked from npm/npm-lifecycle
-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
66 lines (66 loc) · 1.68 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
{
"name": "@pnpm/npm-lifecycle",
"version": "3.0.4",
"description": "JavaScript package lifecycle hook runner",
"main": "index.js",
"scripts": {
"prerelease": "npm t",
"postrelease": "npm publish && git push --follow-tags",
"pretest": "standard",
"release": "standard-version -s",
"test": "tap -J --no-coverage test/*.js",
"update-coc": "weallbehave -o . && git add CODE_OF_CONDUCT.md && git commit -m 'docs(coc): updated CODE_OF_CONDUCT.md'",
"update-contrib": "weallcontribute -o . && git add CONTRIBUTING.md && git commit -m 'docs(contributing): updated CONTRIBUTING.md'"
},
"repository": {
"type": "git",
"url": "git://github.com/pnpm/npm-lifecycle.git"
},
"keywords": [
"npm",
"lifecycle",
"hook",
"runner"
],
"author": "Mike Sherov",
"license": "Artistic-2.0",
"engines": {
"node": ">=18.12"
},
"bugs": {
"url": "https://github.com/pnpm/npm-lifecycle/issues"
},
"homepage": "https://github.com/pnpm/npm-lifecycle#readme",
"dependencies": {
"@pnpm/byline": "^1.0.0",
"@pnpm/error": "^6.0.0",
"@yarnpkg/shell": "4.0.0",
"node-gyp": "^10.1.0",
"resolve-from": "^5.0.0",
"slide": "^1.1.6",
"uid-number": "0.0.6",
"umask": "^1.1.0",
"which": "^4.0.0"
},
"devDependencies": {
"is-windows": "^1.0.2",
"nyc": "15.1.0",
"sinon": "16.1.0",
"standard": "17.1.0",
"standard-version": "9.1.1",
"tap": "15.1.2",
"weallbehave": "1.2.0",
"weallcontribute": "1.0.9"
},
"files": [
"index.js",
"lib",
"node-gyp-bin"
],
"publishConfig": {
"executableFiles": [
"./node-gyp-bin/node-gyp",
"./node-gyp-bin/node-gyp.cmd"
]
}
}