-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
143 lines (143 loc) · 3.83 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
{
"name": "@krakenjs/grabthar-release",
"version": "3.0.0",
"description": "Helper scripts for grabthar releases.",
"main": "index.js",
"scripts": {
"flow-typed": "rm -rf ./flow-typed && flow-typed install",
"lint": "eslint scripts/ --ext .js,.mjs",
"flow": "flow check",
"format": "prettier --write --ignore-unknown .",
"format:check": "prettier --check .",
"jest": "jest",
"test": "npm run format:check && npm run lint && npm run flow-typed && npm run flow && npm run jest",
"babel": "babel scripts --ignore=node_modules,scripts/*.mjs --out-dir scripts --source-maps inline",
"postinstall": "npm_config_registry=https://npm.paypal.com npm install @paypalcorp/web --no-save --proxy='null' --https-proxy='null' || echo 'Unable to install cdnx cli tools'",
"prepare": "husky install",
"prepublishOnly": "npm run babel",
"release": "standard-version",
"postrelease": "git push && git push --follow-tags && npm publish && git checkout ./scripts"
},
"bin": {
"grabthar-activate": "./scripts/activate.mjs",
"grabthar-add": "./scripts/add.mjs",
"grabthar-cdnify": "./scripts/cdnify.js",
"grabthar-flatten": "./scripts/flatten.mjs",
"grabthar-prune": "./scripts/prune.js",
"grabthar-release": "./scripts/release.mjs",
"grabthar-remove": "./scripts/remove.mjs",
"grabthar-upgrade": "./scripts/upgrade.mjs",
"grabthar-validate-git": "./scripts/validate-git.mjs",
"grabthar-validate-npm": "./scripts/validate-npm.mjs",
"grabthar-validate-flat": "./scripts/validate-flat.js",
"grabthar-verify-npm-publish": "./scripts/verify-npm-publish.mjs",
"grabthar-dependency-test": "./scripts/dependency-test.js",
"grabthar-utils.js": "./scripts/grabthar-utils.js"
},
"standard-version": {
"types": [
{
"type": "feat",
"section": "Features"
},
{
"type": "fix",
"section": "Bug Fixes"
},
{
"type": "chore",
"hidden": false
},
{
"type": "docs",
"hidden": false
},
{
"type": "style",
"hidden": false
},
{
"type": "refactor",
"hidden": false
},
{
"type": "perf",
"hidden": false
},
{
"type": "test",
"hidden": false
},
{
"type": "ci",
"hidden": true
}
]
},
"files": [
"scripts"
],
"engines": {
"node": ">=14.13.1",
"npm": ">=6"
},
"config": {
"engine-strict": true
},
"browserslist": [
"IE >= 11",
"chrome >= 27",
"firefox >= 30",
"safari >= 5",
"opera >= 23"
],
"repository": {
"type": "git",
"url": "git://github.com/krakenjs/grabthar-release.git"
},
"keywords": [
"template"
],
"licenses": [
{
"type": "Apache 2.0",
"url": "http://www.apache.org/licenses/LICENSE-2.0.html"
}
],
"readmeFilename": "README.md",
"dependencies": {
"@vercel/fetch-retry": "^5.0.3",
"check-node-version": "^4.0.3",
"command-line-args": "^5.1.1",
"download": "^8.0.0",
"flow-bin": "0.174.1",
"fs-extra": "^5.0.0",
"https-proxy-agent": "^5.0.0",
"inquirer": "^7.3.2",
"libnpmconfig": "^1.2.1",
"node-fetch": "^2.6.0",
"npm": "^6.14.0",
"parse-diff": "^0.8.1",
"semver": "^7.3.5",
"shelljs": "^0.8.4",
"zx": "4.3.0"
},
"devDependencies": {
"@commitlint/cli": "^16.2.3",
"@commitlint/config-conventional": "^16.2.1",
"@krakenjs/grumbler-scripts": "^8.0.4",
"fetch-mock-jest": "^1.5.1",
"flow-typed": "^3.8.0",
"husky": "^7.0.4",
"jest": "^27.5.1",
"lint-staged": "^12.4.0",
"memfs": "^3.4.1",
"mock-argv": "^2.0.8",
"mock-fs": "^5.1.2",
"prettier": "^2.6.2",
"standard-version": "^9.3.2"
},
"lint-staged": {
"*": "prettier --write --ignore-unknown"
}
}