forked from mozilla/webextension-polyfill
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.04 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
{
"name": "webextension-polyfill",
"version": "0.1.0",
"description": "A lightweight polyfill library for Promise-based WebExtension APIs in Chrome.",
"repository": {
"type": "git",
"url": "git+https://github.com/mozilla/webextension-polyfill.git"
},
"author": "Mozilla",
"license": "MPL-2.0",
"bugs": {
"url": "https://github.com/mozilla/webextension-polyfill/issues"
},
"homepage": "https://github.com/mozilla/webextension-polyfill",
"devDependencies": {
"chai": "^3.5.0",
"google-closure-compiler": "^20160911.0.0",
"grunt": "^1.0.1",
"grunt-coveralls": "^1.0.1",
"grunt-replace": "*",
"gruntify-eslint": "*",
"eslint": "3.9.1",
"istanbul-lib-instrument": "^1.1.3",
"jsdom": "^9.6.0",
"mocha": "^3.1.0",
"nyc": "^8.3.1",
"sinon": "^1.17.6"
},
"nyc": {
"reporter": ["lcov", "text", "html"],
"instrument": false
},
"scripts": {
"build": "grunt",
"test": "mocha",
"test-coverage": "COVERAGE=y nyc mocha",
"publish-coverage": "grunt coveralls"
}
}