-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
62 lines (62 loc) · 1.83 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
{
"name": "imdux",
"version": "0.2.1",
"description": "A redux helper for react & hooks & typescript developers.",
"main": "dist/imdux.js",
"types": "src/types.d.ts",
"scripts": {
"test": "jest",
"cover": "jest --coverage --coverageReporters=text-lcov | coveralls",
"dev": "webpack-dev-server --config webpack.dev.config",
"pack": "webpack --config webpack.dist.config",
"pub": "npm publish --registry http://registry.npmjs.org",
"lint": "node_modules/.bin/tslint -p tsconfig.json --fix"
},
"files": [
"dist/imdux.js",
"dist/imdux.js.map",
"src/**/*"
],
"repository": {
"type": "git",
"url": "git+https://github.com/lake2/imdux.git"
},
"keywords": [
"react",
"react-redux",
"immer",
"hook",
"store"
],
"author": "lake2",
"license": "MIT",
"bugs": {
"url": "https://github.com/lake2/imdux/issues"
},
"homepage": "https://github.com/lake2/imdux#readme",
"devDependencies": {
"@babel/core": "^7.10.3",
"@babel/plugin-transform-runtime": "^7.10.3",
"@babel/preset-env": "^7.10.3",
"@babel/preset-typescript": "^7.10.1",
"@babel/runtime": "^7.10.3",
"@types/jest": "^25.2.3",
"babel-loader": "^8.1.0",
"coveralls": "^3.1.0",
"html-webpack-plugin": "^3.2.0",
"jest": "^25.5.4",
"tslint": "^6.1.2",
"typescript": "^3.9.5",
"uglifyjs-webpack-plugin": "^2.2.0",
"webpack": "^4.43.0",
"webpack-bundle-analyzer": "^3.8.0",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0"
},
"dependencies": {
"immer": "^5.3.6",
"is-plain-object": "^3.0.0",
"is-primitive": "^3.0.1",
"redux": "^4.0.5"
}
}