-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
95 lines (95 loc) · 2.29 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "redux-observable-rn-alert",
"version": "0.1.5",
"description": "Support side effects of `Alert.alert()` in a react-native app using redux & redux-observable.",
"keywords": [
"react-native",
"redux",
"redux-observable",
"Alert"
],
"main": "dist/lib/index.js",
"typings": "dist/types/index.d.ts",
"files": [
"dist"
],
"author": "Toshinori Tsugita <[email protected]>",
"repository": {
"type": "git",
"url": "[email protected]:tsugitta/redux-observable-rn-alert.git"
},
"license": "MIT",
"engines": {
"node": ">=8.0.0"
},
"scripts": {
"lint": "tslint -t codeFrame 'src/**/*.ts' 'test/**/*.ts' --fix",
"prebuild": "rimraf dist",
"build": "tsc",
"start": "rollup -c rollup.config.ts -w",
"test": "jest",
"test:watch": "jest --watch",
"test:prod": "npm run lint && npm run test -- --coverage --no-cache",
"report-coverage": "cat ./coverage/lcov.info | coveralls",
"precommit": "lint-staged"
},
"lint-staged": {
"{src,test}/**/*.ts": [
"yarn lint",
"prettier --write",
"git add"
]
},
"jest": {
"transform": {
".(ts|tsx)": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
"moduleFileExtensions": [
"ts",
"js"
],
"coveragePathIgnorePatterns": [
"/node_modules/",
"/test/"
],
"coverageThreshold": {
"global": {
"branches": 90,
"functions": 95,
"lines": 95,
"statements": 95
}
},
"collectCoverage": true,
"globals": {
"ts-jest": {
"diagnostics": false
}
}
},
"peerDependencies": {
"react-native": ">= 0.45",
"redux-observable": ">= 1.0.0",
"rxjs": ">= 6.0.0"
},
"devDependencies": {
"@types/jest": "^24.0.4",
"@types/react-native": "^0.57.36",
"@types/redux": "^3.6.0",
"coveralls": "^3.0.2",
"husky": "^1.3.1",
"jest": "^24.1.0",
"lint-staged": "^8.1.4",
"prettier": "^1.16.4",
"react-native": ">=0.58.4",
"redux-observable": "^1.0.0",
"rimraf": "^2.6.3",
"rxjs": ">=6.4.0",
"semantic-release-cli": "^4.1.0",
"ts-jest": "^23.10.5",
"tslint": "^5.12.1",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.3.3"
}
}