-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
36 lines (36 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
{
"name": "aoc-plugin",
"version": "1.0.0",
"description": "Advent of Code Plugin",
"scripts": {
"eslint": "eslint .",
"eslint-fix": "eslint --fix .",
"web-ext-lint": "npm run prep-firefox && web-ext lint",
"test": "npm run eslint && npm run web-ext-lint",
"prep-chrome": "jq '.common*.chrome' manifest.input.json > manifest.json",
"prep-firefox": "jq '.common*.firefox' manifest.input.json > manifest.json"
},
"repository": {
"type": "git",
"url": "https://github.com/TrePe0/aoc-plugin"
},
"author": "Peter Trebaticky <[email protected]>",
"license": "MIT",
"devDependencies": {
"eslint": "^8.52.0",
"web-ext": "^7.8.0"
},
"webExt": {
"artifactsDir": "output",
"ignoreFiles": ["*.sh", "manifest.input.json", "package*.json"],
"build": {
"overwriteDest": true
},
"lint": {
"selfHosted": true
}
},
"buildChrome": {
"files": ["*.js", "images/*", "manifest.json", "README.md"]
}
}