forked from allure-framework/allure-mocha
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
32 lines (32 loc) · 920 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
{
"name": "mocha-allure-reporter",
"version": "1.4.1-k.1",
"description": "Mocha reporter for Allure framework",
"main": "index.js",
"repository": "https://github.com/kayak/allure-mocha",
"scripts": {
"pretest": "eslint --ignore-path=.gitignore .",
"test": "npm run unit && npm run e2e-test",
"unit": "mocha test/unit/",
"e2e-clean": "rm -rf test/e2e/results",
"e2e-test": "npm run e2e-clean && node test/e2e/main.spec.js && allure generate test/e2e/results --clean -o test/e2e/report"
},
"license": "Apache-2.0",
"devDependencies": {
"allure-commandline": "^2.0.0",
"chai": "^4.1.2",
"dirty-chai": "^2.0.1",
"eslint": "^4.19.1",
"libxmljs": "^0.19.7",
"mocha": "^5.1.1",
"mockery": "^2.0.0",
"sinon": "^5.0.7",
"sinon-chai": "^3.0.0"
},
"dependencies": {
"allure-js-commons": "^1.3.2"
},
"peerDependencies": {
"mocha": "*"
}
}