-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 846 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 846 Bytes
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
{
"name": "cpmanager",
"version": "6.2",
"description": "To manage the addons package in Firefox.",
"scripts": {
"build": "web-ext build --filename cpmanager.xpi",
"start": "web-ext run --verbose --pref devtools.console.stdout.chrome=true --pref devtools.console.stdout.content=true --pref extensions.experiments.enabled=true --pref xpinstall.signatures.required=false",
"lint": "eslint --ext .js,.jsm extension"
},
"author": "Mozilla Online Limited",
"license": "MPL-2.0",
"repository": "https://github.com/mozilla-extensions/cpmanager",
"devDependencies": {
"eslint": "5.16.0",
"eslint-plugin-mozilla": "1.2.1",
"eslint-plugin-no-unsanitized": "3.0.2",
"web-ext": "5.0.0"
},
"webExt": {
"build": {
"overwriteDest": true
},
"sourceDir": "extension"
},
"dependencies": {}
}