-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
37 lines (37 loc) · 938 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
{
"name": "karma-allure-reporter",
"version": "1.4.6",
"description": "Allure Framework reporter to Karma",
"main": "index.js",
"repository": {
"type": "git",
"url": "[email protected]:just-boris/karma-allure-reporter.git"
},
"keywords": [
"karma-plugin",
"karma-reporter",
"allure"
],
"engines": {
"node": ">=4.0.0"
},
"scripts": {
"test": "npm run unit && npm run e2e-test",
"unit": "jasmine JASMINE_CONFIG_PATH=test/jasmine.json",
"e2e-clean": "rm -rf test/e2e/out",
"e2e-test": "npm run e2e-clean && node test/e2e/test-runner.js"
},
"dependencies": {
"allure-js-commons": "1.3.2"
},
"devDependencies": {
"jasmine": "^3.3.1",
"jasmine-core": "^3.3.0",
"karma": "^3.1.3",
"karma-cli": "^2.0.0",
"karma-firefox-launcher": "^1.1.0",
"karma-jasmine": "^2.0.1",
"karma-phantomjs-launcher": "^1.0.4",
"mockery": "^2.1.0"
}
}