forked from bsiegel/http-version-indicator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 925 Bytes
/
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
{
"name": "http-version-indicator",
"version": "3.2.1",
"license": "WTFPL",
"scripts": {
"build": "tsc",
"start": "tsc && web-ext run",
"package": "tsc && web-ext build -n 'http-version-indicator-{version}.zip' -o --verbose",
"sign": "web-ext sign -n 'http-version-indicator-{version}-signed.zip' --verbose",
"lint": "eslint **/*.ts && web-ext lint",
"prettify": "prettier --write **/*.ts"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.18.0",
"@typescript-eslint/parser": "^4.18.0",
"eslint": "^7.22.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-prettier": "^3.3.1",
"prettier": "^2.2.1",
"typescript": "^4.2.3",
"web-ext": "^5.5.0",
"web-ext-types": "^3.2.1"
},
"webExt": {
"ignoreFiles": [
"package*.json",
"tsconfig.json",
"*.ts",
"*.md",
"node_modules",
"icons/src"
]
}
}