2016-10-07 01:20:37 +00:00
|
|
|
{
|
|
|
|
"name": "webextension-polyfill",
|
|
|
|
"version": "0.1.0",
|
|
|
|
"description": "A lightweight polyfill library for Promise-based WebExtension APIs in Chrome.",
|
2017-01-25 21:38:32 +00:00
|
|
|
"main": "src/browser-polyfill.js",
|
|
|
|
"files": [
|
|
|
|
"api-metadata.json",
|
|
|
|
"src",
|
|
|
|
"dist"
|
|
|
|
],
|
2016-10-07 01:20:37 +00:00
|
|
|
"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": {
|
2016-10-10 00:48:35 +00:00
|
|
|
"chai": "^3.5.0",
|
2017-02-03 13:05:16 +00:00
|
|
|
"eslint": "3.9.1",
|
2016-10-07 01:20:37 +00:00
|
|
|
"google-closure-compiler": "^20160911.0.0",
|
|
|
|
"grunt": "^1.0.1",
|
2016-10-10 00:48:35 +00:00
|
|
|
"grunt-coveralls": "^1.0.1",
|
2016-10-07 01:20:37 +00:00
|
|
|
"grunt-replace": "*",
|
2017-01-25 21:38:32 +00:00
|
|
|
"grunt-umd": "^2.4.0",
|
2016-10-10 00:48:35 +00:00
|
|
|
"gruntify-eslint": "*",
|
|
|
|
"istanbul-lib-instrument": "^1.1.3",
|
|
|
|
"jsdom": "^9.6.0",
|
|
|
|
"mocha": "^3.1.0",
|
|
|
|
"nyc": "^8.3.1",
|
|
|
|
"sinon": "^1.17.6"
|
|
|
|
},
|
|
|
|
"nyc": {
|
2017-02-03 13:05:16 +00:00
|
|
|
"reporter": [
|
|
|
|
"lcov",
|
|
|
|
"text",
|
|
|
|
"html"
|
|
|
|
],
|
2016-10-10 00:48:35 +00:00
|
|
|
"instrument": false
|
|
|
|
},
|
|
|
|
"scripts": {
|
|
|
|
"build": "grunt",
|
|
|
|
"test": "mocha",
|
|
|
|
"test-coverage": "COVERAGE=y nyc mocha",
|
2017-01-25 21:38:32 +00:00
|
|
|
"publish-coverage": "grunt coveralls",
|
|
|
|
"prepublish": "npm run build"
|
2016-10-07 01:20:37 +00:00
|
|
|
}
|
|
|
|
}
|