-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.07 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.07 KB
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
47
48
49
50
{
"name": "mousecommander",
"version": "1.0.0",
"description": "Mouse Commander Firefox Extension",
"dependencies": {},
"devDependencies": {
"addons-linter": "^3.5.0",
"eslint": "^7.27.0",
"eslint-plugin-import": "^2.23.3",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-standard": "^5.0.0",
"web-ext": "^6.1.0"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"prebuild": "cp -v app/src/main/resources/base/icon.svg extension/",
"build": "cd app && pipenv run fbs freeze",
"start": "web-ext run --bc -s ./extension/ --url about:addons"
},
"eslintConfig": {
"extends": "eslint:recommended",
"env": {
"es6": true,
"browser": true,
"webextensions": true
},
"parserOptions": {
"sourceType": "module"
},
"plugins": [
"import",
"promise",
"standard"
],
"rules": {
"indent": [
"warn",
4
],
"quotes": [
"warn",
"double"
],
"semi": [
"error",
"always"
]
}
}
}