forked from nazarhussain/mocha-test-options
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 803 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
{
"name": "mocha-test-options",
"version": "1.0.3",
"description": "Extend Mocha BDD to provide test options",
"keywords": [
"mocha",
"test",
"bdd",
"extend",
"options",
"tags"
],
"main": "index.js",
"scripts": {
"test": "mocha --reporter spec --slow 200 --timeout 10000 --require ./index.js --ui index --check-leaks ./test/**/*.test.js"
},
"author": "Nazar Hussain <nazarhussain@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git@github.com:nazarhussain/mocha-test-options.git"
},
"bugs": {
"url": "https://github.com/nazarhussain/mocha-test-options/issues"
},
"dependencies": {
"chai": "4.2.0",
"escape-string-regexp": "~4.0.0",
"mocha": "^8.2.0"
},
"directories": {
"test": "test"
}
}