This repository has been archived by the owner on Feb 3, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
77 lines (77 loc) · 2.04 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
{
"name": "redux-ts-utils",
"version": "4.0.0",
"description": "Everything you need to create type-safe applications with Redux!",
"main": "dist/commonjs/index.js",
"module": "dist/es/index.js",
"typings": "dist/es/index.d.ts",
"scripts": {
"commitmsg": "commitlint -E HUSKY_GIT_PARAMS",
"prebuild": "npm run test",
"build": "npm run build:commonjs && npm run build:es",
"build:commonjs": "tsc --outDir dist/commonjs --target es5",
"build:es": "tsc --outDir dist/es",
"clean": "rimraf dist",
"example": "ts-node ./src/example",
"lint": "eslint --ext ts src/**/*",
"pretest": "npm run example",
"test": "jest --coverage",
"test:watch": "jest --watch",
"posttest": "npm run lint",
"prepack": "npm run build",
"release": "np"
},
"jest": {
"testEnvironment": "node",
"transform": {
"\\.ts$": "ts-jest"
},
"testRegex": "\\.test\\.ts$",
"moduleFileExtensions": [
"ts",
"js"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/knpwrs/redux-ts-utils.git"
},
"keywords": [
"redux",
"typescript",
"utilities",
"immer"
],
"author": "Kenneth Powers <[email protected]> (https://knpw.rs)",
"license": "MIT",
"bugs": {
"url": "https://github.com/knpwrs/redux-ts-utils/issues"
},
"homepage": "https://github.com/knpwrs/redux-ts-utils#readme",
"peerDependencies": {
"redux": "^4.0.1"
},
"dependencies": {
"immer": "^2.0.0"
},
"devDependencies": {
"@commitlint/cli": "^7.2.1",
"@commitlint/config-conventional": "^7.1.2",
"@types/jest": "^24.0.4",
"@types/node": "^11.9.3",
"@typescript-eslint/eslint-plugin": "^1.2.0",
"@typescript-eslint/parser": "^1.2.0",
"codecov": "^3.1.0",
"eslint": "^5.9.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.14.0",
"husky": "^1.2.0",
"jest": "^24.1.0",
"np": "^4.0.2",
"redux": "^4.0.1",
"rimraf": "^2.6.2",
"ts-jest": "^24.0.0",
"ts-node": "^8.0.2",
"typescript": "^3.3.1"
}
}