forked from mozilla/lightbeam-we
-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
49 lines (49 loc) · 1.24 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
{
"name": "lightbeam-we",
"version": "0.0.1",
"description": "Lightbeam web extension",
"main": "background.js",
"scripts": {
"lint": "npm-run-all lint:*",
"lint:eslint": "eslint --ext=.js,.json .",
"lint:webext": "web-ext -s js lint",
"test": "npm-run-all test:*",
"test:lint": "npm run lint:eslint",
"test:karma": "karma start --browsers Firefox --single-run"
},
"repository": {
"type": "git",
"url": "https://github.com/electrolyfish/lightbeam-we.git"
},
"author": "Mozilla",
"license": "MPL-2.0",
"bugs": {
"url": "https://github.com/electrolyfish/lightbeam-we/issues"
},
"homepage": "https://github.com/electrolyfish/lightbeam-we#readme",
"dependencies": {},
"devDependencies": {
"chai": "^3.5.0",
"eslint": "^3.19.0",
"eslint-plugin-json": "^1.2.0",
"eslint-plugin-mocha": "^4.9.0",
"eslint-plugin-no-unsanitized": "^2.0.0",
"karma": "^1.7.0",
"karma-chai": "^0.1.0",
"karma-firefox-launcher": "^1.0.1",
"karma-mocha": "^1.3.0",
"mocha": "^3.4.1",
"npm-run-all": "^4.0.2",
"sinon": "^2.3.1",
"sinon-chrome": "^2.2.1"
},
"directories": {
"test": "test"
},
"keywords": [
"webextension",
"mozilla",
"web",
"security"
]
}