-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
65 lines (65 loc) · 1.96 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
{
"name": "publish-extension-webpack-plugin",
"version": "2.0.0",
"description": "A webpack plugin that publishes extension builds to the Chrome Web Store.",
"author": "Borja Canseco <[email protected]> (https://full.stack.dev)",
"repository": "github:ibm/publish-extension-webpack-plugin",
"homepage": "https://github.com/ibm/publish-extension-webpack-plugin",
"bugs": "https://github.com/ibm/publish-extension-webpack-plugin/issues",
"license": "Apache-2.0",
"keywords": [
"chrome",
"extension",
"publish",
"webext",
"webextension",
"webpack-plugin",
"webpack"
],
"files": [
"dist"
],
"main": "dist/publish-extension-webpack-plugin.js",
"scripts": {
"example": "webpack --config example/webpack.config.babel.js",
"start": "webpack",
"test": "jest --coverage",
"lint": "eslint .",
"vuln": "npm-audit-ci",
"preversion": "npm test && npm run lint && npm run vuln",
"prepack": "npm start",
"version": "npm publish",
"postversion": "git push && git push --tags"
},
"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",
"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",
"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",
"schema-utils": "^1.0.0",
"webpack": "^4.20.2",
"webpack-cli": "^3.1.2",
"webpack-log": "^2.0.0"
}
}