-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
75 lines (75 loc) · 2.01 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
{
"name": "saga-react",
"version": "4.0.0-alpha.2",
"publishConfig": {
"tag": "alpha"
},
"description": "React bindings for Saga",
"repository": "github:reactway/saga",
"bugs": "https://github.com/reactway/saga/issues",
"keywords": [
"react",
"reactjs",
"flux"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc -p .",
"watch": "tsc -p . -w",
"pretest": "tsc -p . --noEmit && tslint -p .",
"test": "jest"
},
"authors": [
"Martynas Žilinskas <[email protected]> (https://github.com/MartynasZilinskas)",
"Dovydas Navickas <[email protected]> (https://github.com/DovydasNavickas)"
],
"files": [
"dist",
"**/*.md"
],
"license": "MIT",
"jest": {
"verbose": true,
"preset": "ts-jest",
"reporters": [
"default",
"jest-junit"
],
"collectCoverage": true,
"testRegex": "/__tests__/.*\\.(test|spec).(ts|tsx)$",
"collectCoverageFrom": [
"src/**/*.{ts,tsx}",
"!src/**/__tests__/*",
"!src/index.ts"
],
"coverageReporters": [
"cobertura",
"istanbul-azure-reporter"
]
},
"peerDependencies": {
"react": "^16.8.4"
},
"dependencies": {
"saga": "4.0.0-alpha.2",
"tslib": "^1.9.3"
},
"devDependencies": {
"@types/jest": "^24.0.9",
"@types/react": "^16.8.8",
"@types/react-dom": "^16.8.2",
"istanbul-azure-reporter": "^0.1.4",
"jest": "^24.1.0",
"jest-dom": "~3.1.3",
"jest-junit": "^6.3.0",
"react-dom": "^16.8.4",
"react-testing-library": "^6.0.0",
"simplr-tslint": "^1.0.0-alpha.14",
"ts-jest": "^24.0.0",
"tslint": "^5.13.1",
"tslint-language-service": "^0.9.9",
"tslint-react-hooks": "~2.0.0",
"typescript": "^3.3.3333"
}
}