-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.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
{
"name": "redux-async-action-reducer",
"version": "0.5.1",
"description": "Redux Action Reducer with redux thunk",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"scripts": {
"test": "jest",
"lint": "tslint -c tslint.json 'lib/**/*.ts'",
"prepublish": "npm run build",
"build": "tsc",
"debug": "node --debug-brk=5090 --inspect ./node_modules/jest/bin/jest -i"
},
"repository": {
"type": "git",
"url": "git+https://github.com/neolivz/redux-async-action-reducer.git"
},
"keywords": [
"redux",
"redux-thunk",
"action",
"reducer",
"async"
],
"author": "Jishnu Viswanath",
"license": "MIT",
"bugs": {
"url": "https://github.com/neolivz/redux-thunk-action-reducer/issues"
},
"homepage": "https://github.com/neolivz/redux-thunk-action-reducer#readme",
"jest": {
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"transform": {
".(ts|tsx)": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testMatch": [
"**/*.spec.(ts|tsx|js)"
]
},
"devDependencies": {
"@types/jest": "^19.2.3",
"jest": "^20.0.4",
"ts-jest": "^20.0.4",
"ts-node": "^3.0.4",
"tslint-config-standard": "^5.0.2",
"typescript": "^2.3.3"
},
"dependencies": {
"tslint": "^5.3.2"
}
}