-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
50 lines (50 loc) · 2.13 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
{
"name": "webcompat-reporter-addon",
"version": "0.6.0",
"description": "WebCompat reporter add-ons.",
"author": "webcompat.com contributors",
"scripts": {
"eslint": "eslint --ignore-path .eslintignore -c .eslintrc . --cache",
"firefox": "web-ext run --source-dir=dist/firefox",
"chrome": "node ./chrome/run.js",
"fennec": "web-ext run --target=firefox-android --source-dir=dist/firefox-mobile --firefox-apk=org.mozilla.firefox",
"fennec-nightly": "web-ext run --target=firefox-android --source-dir=dist/firefox-mobile --firefox-apk=org.mozilla.fennec_aurora",
"package:firefox": "web-ext build --source-dir=dist/firefox --artifacts-dir=bin --overwrite-dest",
"package:fennec": "web-ext build --source-dir=dist/firefox-mobile --artifacts-dir=bin --overwrite-dest",
"package:chrome": "npm run build:chrome && crx pack dist/chrome -o bin/webcompat-reporter-chrome.crx",
"package:opera": "npm run build:opera && crx pack dist/opera -o bin/webcompat-reporter-opera.crx && shx mv bin/webcompat-reporter-opera.crx bin/webcompat-reporter-opera.nex",
"build:firefox": "webpack --env=firefox",
"build:fennec": "webpack --env=firefox-mobile",
"build:chrome": "webpack --env=chrome",
"build:opera": "webpack --env=opera",
"test": "intern",
"clean": "shx rm -rf dist/"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/webcompat/webcompat-reporter-extensions.git"
},
"bugs": {
"url": "https://github.com/webcompat/webcompat-reporter-extensions/issues"
},
"homepage": "https://github.com/webcompat/webcompat-reporter-extensions#readme",
"devDependencies": {
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.2",
"babel-register": "^6.26.0",
"chrome-launch": "^1.1.4",
"copy-webpack-plugin": "^4.3.1",
"crx": "^3.2.1",
"eslint": "6.5.1",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-prettier": "^2.0.1",
"file-exists": "^5.0.1",
"intern": "^4.1.5",
"prettier": "1.11.1",
"shelljs": "^0.8.1",
"shx": "^0.2.2",
"web-ext": "^2.4.0",
"webpack": "^4.1.1",
"webpack-cli": "^3.1.1"
},
"license": "MPL-2.0"
}