mirror of
https://github.com/mdn/webextensions-examples.git
synced 2026-04-16 14:28:33 +02:00
24 lines
587 B
JSON
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"
|
|
}
|
|
}
|