-
Notifications
You must be signed in to change notification settings - Fork 43
/
package.json
46 lines (46 loc) · 1.08 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
{
"name": "archiveror",
"license": "GPL-3.0+",
"author": "Rahiel Kasim",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint . --ignore-path .gitignore && web-ext lint -s ./dist",
"build": "webpack --mode=production --optimize-minimize",
"firefox": "web-ext run -s ./dist -f /usr/bin/firefox --verbose",
"start": "webpack --watch --mode=development"
},
"repository": {
"type": "git",
"url": "https://github.com/rahiel/archiveror.git"
},
"bugs": {
"url": "https://github.com/rahiel/archiveror/issues"
},
"dependencies": {
"@babel/polyfill": "^7.6.0"
},
"devDependencies": {
"@babel/core": "^7.6.4",
"@babel/preset-env": "^7.6.3",
"babel-loader": "^8.0.6",
"eslint": "^6.5.1",
"source-map-loader": "^0.2.4",
"web-ext": "^3.2.0",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.9"
},
"browserslist": [
"firefox >= 52",
"chrome >= 55"
],
"babel": {
"presets": [
[
"@babel/preset-env",
{
"modules": false
}
]
]
}
}