-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
42 lines (42 loc) · 1 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
{
"name": "chrome-options",
"main": "dist/chrome-options.min.js",
"version": "1.0.0",
"description": "Options page for your Chrome extension",
"author": "fent (https://github.com/fent)",
"keywords": [
"chrome",
"extension",
"options"
],
"homepage": "https://github.com/fent/chrome-options",
"license": "MIT",
"scripts": {
"build": "webpack --mode=production",
"build:dev": "webpack --mode=development",
"watch": "webpack --mode=development --watch"
},
"standard-version": {
"commitAll": true,
"scripts": {
"postbump": "webpack --mode=production && git add dist/"
}
},
"ignore": [
"images",
"src",
"node_modules"
],
"devDependencies": {
"c-p": "github:tovic/color-picker",
"chrome-bootstrap": "^1.5.0",
"css-loader": "^1.0.0",
"dragula": "^3.7.2",
"file-loader": "^2.0.0",
"lightdown": "^0.5.3",
"style-loader": "^0.23.0",
"url-loader": "^1.1.1",
"webpack": "^4.20.2",
"webpack-cli": "^3.1.2"
}
}