forked from theoutlander/jest-dashboard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.32 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": "jest-dashboard",
"version": "0.3.1",
"description": "Command-line dashboard for jest",
"main": "./src/index.js",
"scripts": {
"test": "jest jest-dashboard/src/ --config jest.config.json",
"test-dashboard": "npm test -- --reporters '<rootDir>/src/reporter/jest.dashboard.reporter.js'",
"test-debug": "node --inspect-brk ./node_modules/.bin/jest -i jest-dashboard/src --config jest.config.json",
"test-debug-dashboard": "npm run test-debug -- --reporters '<rootDir>/src/reporter/jest.dashboard.reporter.js'",
"test-watch": "jest jest-dashboard/src/ --config jest.config.json --watch --notify",
"test-watch-dashboard": "npm run test-watch -- --reporters '<rootDir>/src/reporter/jest.dashboard.reporter.js'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/theoutlander/jest-dashboard.git"
},
"keywords": [
"jest",
"dashboard",
"enzyme",
"nodejs",
"javascript"
],
"author": "Nick Karnik",
"license": "MIT",
"bugs": {
"url": "https://github.com/theoutlander/jest-dashboard/issues"
},
"homepage": "https://github.com/theoutlander/jest-dashboard#readme",
"peerDependencies": {
"jest": "^22.1.4"
},
"dependencies": {
"blessed": "^0.1.81",
"blessed-contrib": "^4.8.5",
"colors": "^1.1.2",
"strip-color": "^0.1.0"
}
}