-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.29 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
{
"name": "mocha-decaf",
"version": "1.1.1",
"description": "Run Mocha tests in dry run mode",
"keywords": [
"mocha",
"dry",
"dry-run",
"list",
"test"
],
"bin": {
"mocha-decaf": "main.js",
"mocha-list": "list.js"
},
"author": {
"name": "Mostafa Yassin",
"email": "[email protected]",
"url": "https://github.com/sh3raawii"
},
"homepage": "https://github.com/sh3raawii/mocha-decaf.git",
"bugs": {
"url": "https://github.com/sh3raawii/mocha-decaf/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/sh3raawii/mocha-decaf.git"
},
"contributors": [],
"license": "MIT",
"scripts": {
"test": "standard && tav",
"test:dev": "node list.js",
"lint": "standard --fix",
"lint:docs": "documentation lint index.js",
"generate:doc:API:md": "documentation build index.js -f md --resolve node --sort-order alpha -o API.md --markdown-toc-max-depth 2"
},
"dependencies": {},
"peerDependencies": {
"mocha": ">=3.0.0"
},
"devDependencies": {
"docsify-cli": "^4.4.2",
"documentation": "^13.1.0",
"mocha": "^8.2.1",
"standard": "^16.0.3",
"test-all-versions": "^5.0.1"
},
"engines": {
"node": ">=10.23.0"
},
"standard": {
"env": {
"mocha": true
}
}
}