forked from psych0der/mocha-demos
-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathpackage.json
44 lines (43 loc) · 979 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
38
39
40
41
42
43
44
{
"name": "mocha-unit-testing-example",
"version": "1.0.0",
"description": "a simple unit test demo using mocha",
"main": "index.js",
"directories": {
"test": "test"
},
"dependencies": {
"chai": "^4.2.0",
"chai-spies": "^1.0.0",
"mocha": "^6.2.0",
"mochawesome": "^4.0.1",
"nyc": "^14.1.1"
},
"scripts": {
"test": "mocha --config ./test/config/mocha.config.js",
"coverage": "nyc npm run test"
},
"nyc": {
"all": true,
"include": [
"app/**/*.js"
],
"excludes": [
"**/*.spec.js"
],
"reporter": [
"html",
"text"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/stranger2626/mocha-unit-testing-example.git"
},
"author": "Matsvei Murashka",
"license": "ISC",
"bugs": {
"url": "https://github.com/stranger2626/mocha-unit-testing-example/issues"
},
"homepage": "https://github.com/stranger2626/mocha-unit-testing-example#readme"
}