-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
35 lines (35 loc) · 1.13 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
{
"name": "generate-package-json-webpack-plugin",
"version": "2.6.0",
"description": "Generates a package.json file containing the external modules used by your webpack bundle",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"cut-patch-release": "npm version patch && git push --follow-tags && npm publish",
"cut-minor-release": "npm version minor && git push --follow-tags && npm publish",
"cut-major-release": "npm version major && git push --follow-tags && npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lostpebble/generate-package-json-webpack-plugin.git"
},
"keywords": [
"webpack",
"plugin",
"package.json",
"node",
"modules"
],
"author": "Paul Myburgh",
"license": "MIT",
"bugs": {
"url": "https://github.com/lostpebble/generate-package-json-webpack-plugin/issues"
},
"homepage": "https://github.com/lostpebble/generate-package-json-webpack-plugin#readme",
"devDependencies": {
"@types/webpack": "^4.41.17",
"cross-env": "^5.0.1",
"webpack": "5.52.0"
}
}