-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
41 lines (41 loc) · 971 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
{
"name": "mocha-cases",
"version": "0.3.0",
"description": "A tiny mocha test case runner. Suited for simple input to output validation tests.",
"main": "index.js",
"scripts": {
"lint": "eslint .",
"test": "mocha index.test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/amobiz/mocha-cases.git"
},
"keywords": [
"mocha",
"test",
"cases",
"runner",
"json"
],
"author": "Amobiz <[email protected]> (https://github.com/amobiz)",
"contributors": [
"Ivan Sosnin <[email protected]> (https://github.com/vansosnin)"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/amobiz/mocha-cases/issues"
},
"homepage": "https://github.com/amobiz/mocha-cases#readme",
"peerDependencies": {
"mocha": ">=2.0.0"
},
"devDependencies": {
"eslint": "^5.14.1",
"mocha": "^6.0.0"
},
"dependencies": {
"async-done": "^1.3.1",
"chai": "^4.2.0"
}
}