-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
42 lines (42 loc) · 1.09 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": "coupon-booklet",
"version": "1.0.0",
"description": "Store coupons for websites. No external websites involved. Just a specialized store. ",
"main": "background.js",
"scripts": {
"test": "npm run lint",
"lint": "npm run lint:js && npm run lint:webext",
"lint:js": "eslint .",
"lint:webext": "web-ext lint",
"build": "web-ext build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/freaktechnik/coupon-booklet.git"
},
"author": "Martin Giger (https://humanoids.be)",
"license": "MPL-2.0",
"bugs": {
"url": "https://github.com/freaktechnik/coupon-booklet/issues"
},
"homepage": "https://github.com/freaktechnik/coupon-booklet#readme",
"devDependencies": {
"@freaktechnik/eslint-config-extension": "^10.1.7",
"eslint": "^9.18.0",
"eslint-plugin-optimize-regex": "^1.2.1",
"web-ext": "^8.3.0"
},
"browserslist": [
"last 1 firefox version",
"firefox esr"
],
"webExt": {
"ignoreFiles": [
"package.json",
"package-lock.json",
".tx",
"README.md"
]
},
"type": "module"
}