forked from adamgruber/mochawesome
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
86 lines (86 loc) · 2.12 KB
/
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "mochawesome",
"version": "2.3.1",
"description": "A Gorgeous HTML/CSS Reporter for Mocha.js",
"scripts": {
"lint": "eslint src test",
"test": "npm run lint && cross-env NODE_ENV=test nyc mocha",
"test:fn": "mocha test-functional/test.js --opts test-functional/mocha.opts",
"test:prog": "node ./test-programmatic",
"test:mem": "mocha test-functional/mem-test.js --opts test-functional/mocha.opts",
"test:ctx": "mocha test-functional/test-context.js --opts test-functional/mocha.opts",
"dev": "babel --watch src -d dist",
"build": "babel src -d dist",
"prepack": "npm run test && npm run build"
},
"author": "Adam Gruber",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/adamgruber/mochawesome"
},
"keywords": [
"mocha",
"reporter",
"json",
"html"
],
"engine": "node >= 4",
"main": "dist/mochawesome.js",
"files": [
"addContext.js",
"dist"
],
"nyc": {
"include": [
"src/*.js"
],
"require": [
"babel-register"
],
"sourceMap": false,
"instrument": false,
"reporter": [
"lcov",
"html",
"text-summary"
],
"cache": true,
"check-coverage": true,
"lines": 99,
"statements": 99,
"functions": 100,
"branches": 90
},
"dependencies": {
"babel-runtime": "^6.20.0",
"chalk": "^1.1.3",
"diff": "^3.0.0",
"json-stringify-safe": "^5.0.1",
"lodash": "^4.17.3",
"mochawesome-report-generator": "^2.2.0",
"strip-ansi": "^4.0.0",
"uuid": "^3.0.1"
},
"peerDependencies": {
"mocha": "*"
},
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-core": "^6.20.0",
"babel-plugin-istanbul": "^3.0.0",
"babel-plugin-transform-runtime": "^6.15.0",
"babel-preset-es2015": "^6.14.0",
"babel-preset-stage-3": "^6.11.0",
"babel-register": "^6.14.0",
"cross-env": "^3.1.2",
"eslint": "^3.10.2",
"eslint-config-airbnb-base": "^10.0.1",
"eslint-plugin-import": "^2.2.0",
"mocha": "*",
"nyc": "^9.0.1",
"proxyquire": "^1.7.10",
"should": "^11.1.2",
"sinon": "^2.1.0"
}
}