-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
47 lines (47 loc) · 1.49 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
{
"name": "webextension-maltasupermarket",
"version": "0.0.1",
"description": "Web extension to enchance the maltasupermarket.com experience",
"main": "src/index.js",
"repository": "[email protected]:frg/webextension-maltasupermarket.git",
"license": "MIT",
"dependencies": {
"arrive": "^2.4.1",
"delegated-events": "^1.1.2",
"mitt": "^2.1.0",
"webext-options-sync": "^2.0.1"
},
"devDependencies": {
"@babel/core": "^7.14.3",
"babel-cli": "^6.26.0",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.2.2",
"babel-preset-env": "^1.6.1",
"bestzip": "^2.2.0",
"copy-webpack-plugin": "^9.0.0",
"eslint": "^7.27.0",
"nodemon": "^2.0.7",
"webpack": "^5.37.1",
"webpack-cli": "^4.7.0",
"webpack-merge": "^5.7.3"
},
"scripts": {
"start": "rm -rf ./dist && nodemon --exec \"webpack --config webpack.dev.js\"",
"build": "rm -rf ./dist && webpack --config webpack.prod.js",
"zip": "rm -rf ./build && npm run build && mkdir build && cd dist/ && bestzip ../build/webextension-maltasupermarket.zip *",
"lint": "eslint --ext .js --ignore-path .gitignore . --fix"
},
"nodemonConfig": {
"ignore": [
"dist/",
"build/",
"assets/",
"node_modules"
],
"execMap": {
"js": "node"
},
"ext": "js html css json",
"verbose": true
}
}