68 lines
1.8 KiB
JSON
68 lines
1.8 KiB
JSON
{
|
|
"name": "webextension-polyfill",
|
|
"version": "0.2.1",
|
|
"description": "A lightweight polyfill library for Promise-based WebExtension APIs in Chrome.",
|
|
"main": "dist/browser-polyfill.js",
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"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": {
|
|
"async-wait-until": "^1.1.5",
|
|
"babel-eslint": "^8.0.1",
|
|
"babel-plugin-transform-es2015-modules-umd": "^6.24.1",
|
|
"babel-preset-babili": "^0.0.10",
|
|
"babel-preset-es2017": "^6.24.1",
|
|
"browserify": "^16.2.2",
|
|
"chai": "^3.5.0",
|
|
"chromedriver": "^2.38.3",
|
|
"eslint": "^3.9.1",
|
|
"finalhandler": "^1.1.0",
|
|
"geckodriver": "^1.11.0",
|
|
"global-replaceify": "^1.0.0",
|
|
"grunt": "^1.0.1",
|
|
"grunt-babel": "^6.0.0",
|
|
"grunt-contrib-concat": "^1.0.1",
|
|
"grunt-coveralls": "^1.0.1",
|
|
"grunt-replace": "^1.0.1",
|
|
"gruntify-eslint": "^4.0.0",
|
|
"istanbul-lib-instrument": "^1.1.3",
|
|
"jsdom": "^9.6.0",
|
|
"mocha": "^3.1.0",
|
|
"nyc": "^8.3.1",
|
|
"selenium-webdriver": "^4.0.0-alpha.1",
|
|
"serve-static": "^1.13.1",
|
|
"shelljs": "^0.8.2",
|
|
"sinon": "^1.17.6",
|
|
"tap-nirvana": "^1.0.8",
|
|
"tape-async": "^2.3.0",
|
|
"tmp": "0.0.33"
|
|
},
|
|
"nyc": {
|
|
"reporter": [
|
|
"lcov",
|
|
"text",
|
|
"html"
|
|
],
|
|
"instrument": false
|
|
},
|
|
"scripts": {
|
|
"build": "grunt",
|
|
"prepublish": "npm run build && npm run test",
|
|
"publish-coverage": "grunt coveralls",
|
|
"test": "mocha",
|
|
"test-coverage": "COVERAGE=y nyc mocha",
|
|
"test-minified": "TEST_MINIFIED_POLYFILL=1 mocha",
|
|
"test-integration": "tape test/integration/test-*"
|
|
}
|
|
}
|