Files
webextensions-examples/mocha-client-tests/package.json
2016-12-01 16:08:31 -06:00

24 lines
587 B
JSON

{
"name": "mocha-test-webextension",
"version": "1.0.0",
"description": "Example how to run unit tests for WebExtension",
"main": "index.js",
"scripts": {
"test": "karma start",
"test:debug": "karma start --no-single-run --auto-watch",
"web-ext": "web-ext run -s ./addon"
},
"author": "",
"license": "MPL-2.0",
"devDependencies": {
"chai": "^3.5.0",
"expect.js": "^0.3.1",
"karma": "^1.3.0",
"karma-firefox-launcher": "^1.0.0",
"karma-mocha": "^1.3.0",
"mocha": "^3.1.2",
"sinon-chrome": "^2.1.2",
"web-ext": "^1.6.0"
}
}