2016-10-07 01:20:37 +00:00
|
|
|
{
|
|
|
|
"name": "webextension-polyfill",
|
2020-11-10 20:14:55 +00:00
|
|
|
"version": "0.7.0",
|
2016-10-07 01:20:37 +00:00
|
|
|
"description": "A lightweight polyfill library for Promise-based WebExtension APIs in Chrome.",
|
2017-04-11 11:50:22 +00:00
|
|
|
"main": "dist/browser-polyfill.js",
|
2017-01-25 21:38:32 +00:00
|
|
|
"files": [
|
|
|
|
"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": {
|
2021-03-03 15:22:59 +00:00
|
|
|
"@babel/core": "7.13.8",
|
|
|
|
"@babel/preset-env": "7.13.9",
|
|
|
|
"@babel/register": "7.13.8",
|
2021-02-03 17:57:40 +00:00
|
|
|
"babel-eslint": "10.1.0",
|
|
|
|
"babel-preset-minify": "0.5.1",
|
2021-02-04 19:56:39 +00:00
|
|
|
"browserify": "17.0.0",
|
2021-03-03 15:25:27 +00:00
|
|
|
"chai": "4.3.1",
|
2021-02-04 19:58:42 +00:00
|
|
|
"chromedriver": "88.0.0",
|
2021-02-03 17:57:40 +00:00
|
|
|
"codecov": "3.8.1",
|
2021-02-04 19:59:46 +00:00
|
|
|
"cross-env": "7.0.3",
|
2021-03-03 15:24:24 +00:00
|
|
|
"eslint": "7.21.0",
|
2021-02-03 17:57:40 +00:00
|
|
|
"finalhandler": "1.1.2",
|
|
|
|
"geckodriver": "1.22.1",
|
|
|
|
"global-replaceify": "1.0.0",
|
|
|
|
"grunt": "1.3.0",
|
|
|
|
"grunt-babel": "8.0.0",
|
|
|
|
"grunt-contrib-concat": "1.0.1",
|
2021-03-03 15:23:54 +00:00
|
|
|
"grunt-replace": "2.0.1",
|
2021-02-03 17:57:40 +00:00
|
|
|
"gruntify-eslint": "5.0.0",
|
2021-02-04 20:05:45 +00:00
|
|
|
"istanbul-lib-instrument": "4.0.3",
|
2021-02-03 17:57:40 +00:00
|
|
|
"jsdom": "9.12.0",
|
2021-02-12 11:58:57 +00:00
|
|
|
"mocha": "8.3.0",
|
2021-02-05 10:45:50 +00:00
|
|
|
"nyc": "15.1.0",
|
2021-02-03 17:57:40 +00:00
|
|
|
"selenium-webdriver": "4.0.0-alpha.8",
|
|
|
|
"serve-static": "1.14.1",
|
|
|
|
"shelljs": "0.8.4",
|
2021-02-05 10:41:44 +00:00
|
|
|
"sinon": "9.2.4",
|
2021-02-03 17:57:40 +00:00
|
|
|
"tap-nirvana": "1.1.0",
|
2021-03-03 15:25:08 +00:00
|
|
|
"tape": "5.2.1",
|
2021-02-03 17:57:40 +00:00
|
|
|
"tape-async": "2.3.0",
|
2021-02-03 19:07:33 +00:00
|
|
|
"tmp": "0.2.1"
|
2016-10-10 00:48:35 +00:00
|
|
|
},
|
|
|
|
"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",
|
2017-02-08 00:00:31 +00:00
|
|
|
"prepublish": "npm run build && npm run test",
|
2021-01-21 12:20:11 +00:00
|
|
|
"publish-coverage": "codecov",
|
2016-10-10 00:48:35 +00:00
|
|
|
"test": "mocha",
|
2019-01-28 17:49:25 +00:00
|
|
|
"test-coverage": "cross-env COVERAGE=y nyc mocha",
|
|
|
|
"test-minified": "cross-env TEST_MINIFIED_POLYFILL=1 mocha",
|
|
|
|
"test-integration": "tape test/integration/test-*",
|
|
|
|
"test-integration:chrome": "cross-env TEST_BROWSER_TYPE=chrome npm run test-integration | tap-nirvana",
|
|
|
|
"test-integration:firefox": "cross-env TEST_BROWSER_TYPE=firefox npm run test-integration | tap-nirvana"
|
2016-10-07 01:20:37 +00:00
|
|
|
}
|
|
|
|
}
|