-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.97 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
58
59
60
61
62
63
64
65
66
67
68
{
"name": "jest-watch-random",
"version": "0.0.0-development",
"description": "Randomly run some of the tests",
"keywords": [
"jest",
"jest-watch-plugins",
"testing",
"tooling"
],
"homepage": "https://github.com/unional/jest-watch-random",
"bugs": {
"url": "https://github.com/unional/jest-watch-random/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/unional/jest-watch-random.git"
},
"license": "MIT",
"files": [
"lib"
],
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"scripts": {
"build": "tsc -p tsconfig.base.json",
"build:watch": "tsc -p tsconfig.base.json -w",
"coverage": "jest --coverage",
"dc": "yarn dependency-check",
"dependency-check": "dependency-check . --unused --no-dev -i jest && dependency-check . --missing --no-dev",
"lint": "tslint -p tsconfig.json",
"test": "jest",
"test:watch": "jest --watch",
"verify": "yarn lint && yarn build && yarn coverage && yarn dependency-check",
"verify:ci": "yarn lint && yarn build && jest --coverage --config jest.config.ci.json && yarn dependency-check",
"watch": "yarn test:watch"
},
"dependencies": {
"ansi-escapes": "^4.2.0",
"chalk": "^2.4.2",
"jest-watcher": "^24.8.0",
"unpartial": "^0.6.3"
},
"devDependencies": {
"@types/ansi-escapes": "^4.0.0",
"@types/jest": "^24.0.15",
"@types/node": "^12.6.2",
"assertron": "^7.1.2",
"dependency-check": "^3.4.1",
"jest": "^24.8.0",
"jest-audio-reporter": "^2.2.1",
"jest-junit": "^6.4.0",
"jest-watch-repeat": "^1.0.4",
"jest-watch-suspend": "^1.1.2",
"jest-watch-toggle-config": "^1.0.2",
"jest-watch-typeahead": "^0.3.1",
"memory-streams": "^0.1.3",
"semantic-release": "^15.13.18",
"ts-jest": "^24.0.2",
"tslint": "^5.18.0",
"tslint-config-unional": "^0.10.0",
"tslint-language-service": "^0.9.9",
"typescript": "^3.5.3"
},
"peerDependencies": {
"jest": ">=23"
}
}