-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
40 lines (40 loc) · 1.03 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
{
"name": "mocha-progress-reporter",
"version": "1.1.3",
"description": "Custom Mocha reporter with spinners and progress reporting ability",
"main": "index.js",
"scripts": {
"start": "node ./node_modules/typescript/bin/tsc --build",
"prepublishOnly": "npm start",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/ramtinsoltani/mocha-progress-reporter.git"
},
"keywords": [
"mocha",
"reporter",
"test",
"tests",
"unit",
"custom"
],
"author": "Ramtin Soltani <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/ramtinsoltani/mocha-progress-reporter/issues"
},
"homepage": "https://github.com/ramtinsoltani/mocha-progress-reporter#readme",
"dependencies": {
"chalk": "^4.1.0",
"mocha": "^8.2.1",
"ora": "^5.3.0",
"strip-ansi": "^6.0.0"
},
"devDependencies": {
"@types/mocha": "^8.2.0",
"@types/node": "^14.14.25",
"typescript": "^4.1.3"
}
}