This repository has been archived by the owner on Jan 22, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
67 lines (67 loc) · 1.94 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "examplewebextension",
"version": "0.0.1",
"description": "Example WebExtension Repo",
"repository": {
"type": "git",
"url": "git@github.com:standard8/example-webextension-repo.git"
},
"bugs": {
"url": "https://github.com/standard8/example-webextension-repo/issues"
},
"engines": {
"firefox": ">=48.0a1"
},
"dependencies": {},
"devDependencies": {
"eslint": "4.5.0",
"eslint-plugin-json": "1.2.0",
"eslint-plugin-mocha": "4.11.0",
"eslint-plugin-promise": "3.5.0",
"fx-runner": "1.0.7",
"geckodriver": "1.8.1",
"karma": "1.7.1",
"karma-coverage": "1.1.1",
"karma-coveralls": "1.1.2",
"karma-firefox-launcher": "1.0.1",
"karma-mocha": "1.3.0",
"karma-mocha-reporter": "2.2.4",
"mocha": "3.5.2",
"mz": "2.6.0",
"sinon": "3.2.1",
"sinon-chrome": "2.2.1",
"npm-run-all": "4.1.1",
"selenium-webdriver": "3.5.0",
"virtualenv": "0.3.1",
"web-ext": "2.0.0"
},
"permissions": {
"multiprocess": true
},
"preferences": [
{
"name": "buttonUrl",
"title": "Web page url",
"description": "The web page url to open when button is clicked",
"type": "string",
"value": "https://www.mozilla.org/"
}
],
"scripts": {
"bundle": "web-ext -s add-on -a dist build --overwrite-dest",
"download": "node scripts/get_ff.js",
"firefox": "web-ext -s add-on run --firefox-binary ${FIREFOX_BINARY:-beta}",
"lint": "npm-run-all lint:*",
"lint:eslint": "eslint --ext=.js,.json .",
"lint:webext": "web-ext -s add-on lint",
"test": "npm-run-all test:*",
"test:lint": "npm run lint",
"test:karma": "NODE_ENV=test karma start",
"test:func": "export FIREFOX_BINARY=${FIREFOX_BINARY:-beta} && npm run bundle && XPI_NAME=dist/example_webextension-0.0.1.zip mocha test/functional/",
"virtualenv-postinstall": "virtualenv-postinstall"
},
"license": "MPL-2.0",
"keywords": [
"webextensions"
]
}