This repository has been archived by the owner on Aug 8, 2024. It is now read-only.
forked from IBM/publish-extension-webpack-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
89 lines (89 loc) · 2.9 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
{
"name": "@mixmaxhq/publish-extension-webpack-plugin",
"version": "1.2.8",
"description": "A webpack plugin that publishes extension builds to the Chrome Web Store.",
"author": "Mixmax <[email protected]> (https://mixmax.com)",
"repository": "github:mixmaxhq/publish-extension-webpack-plugin",
"homepage": "https://github.com/mixmaxhq/publish-extension-webpack-plugin",
"license": "Apache-2.0",
"keywords": [
"chrome",
"extension",
"publish",
"webext",
"webextension",
"webpack-plugin",
"webpack"
],
"files": [
"dist"
],
"main": "dist/@mixmaxhq/publish-extension-webpack-plugin.js",
"scripts": {
"postinstall": "patch-package",
"example": "webpack --config example/webpack.config.babel.js",
"build": "NODE_OPTIONS=--openssl-legacy-provider webpack",
"test": "jest --coverage",
"lint": "eslint .",
"prepare": "npm run build",
"ci": "npm run lint && npm test",
"ci:commitlint": "commitlint-jenkins --pr-only",
"prepublishOnly": "npm run build && if [ \"$CI\" = '' ] && [ \"$npm_config_dry_run\" != true ]; then node -p 'JSON.parse(process.env.npm_package_config_manualPublishMessage)'; exit 1; fi",
"semantic-release": "SEMANTIC_COMMITLINT_SKIP=4febd2d,9d72d63,2e81149 semantic-release"
},
"peerDependencies": {
"webpack": "^4.0.0"
},
"devDependencies": {
"@babel/cli": "^7.1.2",
"@babel/core": "^7.1.2",
"@babel/plugin-proposal-class-properties": "^7.1.0",
"@babel/plugin-transform-runtime": "^7.1.0",
"@babel/preset-env": "^7.1.0",
"@babel/register": "^7.0.0",
"@babel/runtime": "^7.1.2",
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"@mixmaxhq/commitlint-jenkins": "^1.4.2",
"@mixmaxhq/semantic-release-config": "^2.0.0",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^23.6.0",
"babel-loader": "^8.0.4",
"bestzip": "^2.1.2",
"chrome-webstore-upload": "^0.2.2",
"clean-webpack-plugin": "^0.1.19",
"copy-webpack-plugin": "^4.5.3",
"cz-conventional-changelog": "^3.1.0",
"dotenv-safe": "^6.1.0",
"eslint": "^5.7.0",
"eslint-config-google": "^0.11.0",
"eslint-plugin-babel": "^5.2.1",
"eslint-plugin-import": "^2.14.0",
"jest": "^23.6.0",
"npm-audit-ci": "^1.0.1",
"patch-package": "^8.0.0",
"schema-utils": "^1.0.0",
"semantic-release": "^17.2.3",
"webpack": "^4.20.2",
"webpack-cli": "^3.1.2",
"webpack-log": "^2.0.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
},
"manualPublishMessage": "This repository is configured to use semantic-release for its releases. Please do not release manually.\n"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"release": {
"extends": "@mixmaxhq/semantic-release-config"
},
"publishConfig": {
"access": "public"
}
}