UNPKG

1.39 kBJSONView Raw
1{
2 "name": "webextension-polyfill",
3 "version": "0.2.1",
4 "description": "A lightweight polyfill library for Promise-based WebExtension APIs in Chrome.",
5 "main": "dist/browser-polyfill.js",
6 "files": [
7 "dist"
8 ],
9 "repository": {
10 "type": "git",
11 "url": "git+https://github.com/mozilla/webextension-polyfill.git"
12 },
13 "author": "Mozilla",
14 "license": "MPL-2.0",
15 "bugs": {
16 "url": "https://github.com/mozilla/webextension-polyfill/issues"
17 },
18 "homepage": "https://github.com/mozilla/webextension-polyfill",
19 "devDependencies": {
20 "babel-plugin-transform-es2015-modules-umd": "^6.24.1",
21 "babel-preset-babili": "0.0.10",
22 "chai": "^3.5.0",
23 "eslint": "3.9.1",
24 "grunt": "^1.0.1",
25 "grunt-babel": "^6.0.0",
26 "grunt-contrib-concat": "^1.0.1",
27 "grunt-coveralls": "^1.0.1",
28 "grunt-replace": "^1.0.1",
29 "gruntify-eslint": "^4.0.0",
30 "istanbul-lib-instrument": "^1.1.3",
31 "jsdom": "^9.6.0",
32 "mocha": "^3.1.0",
33 "nyc": "^8.3.1",
34 "sinon": "^1.17.6"
35 },
36 "nyc": {
37 "reporter": [
38 "lcov",
39 "text",
40 "html"
41 ],
42 "instrument": false
43 },
44 "scripts": {
45 "build": "grunt",
46 "prepublish": "npm run build && npm run test",
47 "publish-coverage": "grunt coveralls",
48 "test": "mocha",
49 "test-coverage": "COVERAGE=y nyc mocha",
50 "test-minified": "TEST_MINIFIED_POLYFILL=1 mocha"
51 }
52}