forked from markis/jest-ratchet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 1.65 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
69
70
71
72
73
74
75
76
77
78
79
{
"name": "jest-ratchet",
"version": "1.2.4",
"description": "Ratchet up code coverage - keep test coverage going only one direction -- up",
"keywords": [
"jest",
"coverage",
"test",
"test-coverage",
"jest-ratchet"
],
"author": {
"name": "Markis Taylor",
"email": "[email protected]"
},
"main": "index.js",
"engines": {
"node": ">=4"
},
"repository": {
"type": "git",
"url": "https://github.com/markis/jest-ratchet.git"
},
"bugs": {
"url": "https://github.com/markis/jest-ratchet/issues",
"email": "[email protected]"
},
"license": "MIT",
"jest": {
"collectCoverage": true,
"coverageReporters": [
"json-summary",
"lcovonly",
"html"
],
"coverageThreshold": {
"global": {
"branches": 80,
"functions": 80,
"lines": 80,
"statements": 80
}
},
"testPathIgnorePatterns": [
"/node_modules/",
"/test-setup/"
],
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "test\\.ts$",
"moduleFileExtensions": [
"js",
"ts",
"tsx"
],
"verbose": true
},
"scripts": {
"build": "rollup -c",
"prepublishOnly": "tslint src/*.ts && jest && rollup -c",
"jest": "jest",
"test": "tslint src/*.ts && tsc --noemit && jest --no-cache"
},
"devDependencies": {
"@markis/rollup-plugin-typescript": "0.8.1-dev.4",
"@types/jest": "22.2.0",
"@types/node": "9.4.7",
"jest": "22.4.2",
"rollup": "0.57.1",
"ts-jest": "22.4.2",
"tslint": "5.9.1",
"typescript": "2.7.2"
},
"dependencies": {
"json-in-place": "1.0.1",
"yargs-parser": "9.0.2"
}
}