-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
36 lines (36 loc) · 1.04 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": "quitter",
"private": false,
"version": "1.1.0",
"description": "Firefox CI test addon to quit the browser",
"scripts": {
"build": "web-ext build --ignore-files web-ext.config.js package-lock.json package.json",
"lint": "eslint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mozilla-extensions/quitter.git"
},
"author": "Joel Maher",
"license": "MPL-2.0",
"bugs": {
"url": "https://github.com/mozilla-extensions/quitter/issues"
},
"webExt": {
"build": {
"overwriteDest": true,
"filename": "quitter.xpi"
}
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"eslint": "^7.21.0",
"eslint-config-prettier": "^8.0.0",
"eslint-plugin-fetch-options": "^0.0.5",
"eslint-plugin-html": "^6.1.1",
"eslint-plugin-mozilla": "^2.9.2",
"eslint-plugin-no-unsanitized": "^4.0.0",
"eslint-plugin-prettier": "^3.3.1",
"web-ext": "^7.2.0"
}
}