-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.05 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
{
"name": "@tfso/redux-switchless-reducer",
"version": "1.0.1",
"description": "Create redux reducers and actions with less code",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"build": "tsc",
"test": "jest --watch",
"citest": "jest --ci"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tfso/redux-switchless-reducer.git"
},
"keywords": [
"redux"
],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/tfso/redux-switchless-reducer/issues"
},
"homepage": "https://github.com/tfso/redux-switchless-reducer#readme",
"dependencies": {
"redux": "^4.0.1"
},
"devDependencies": {
"@types/jest": "^24.0.13",
"conventional-changelog-conventionalcommits": "^4.6.0",
"jest": "^27.0.6",
"ts-jest": "^27.0.3",
"typescript": "^3.9.10"
},
"jest": {
"transform": {
".(ts|tsx)": "ts-jest"
},
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js"
]
}
}