-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
45 lines (45 loc) · 1.19 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
{
"name": "use-easy-model",
"version": "1.0.5",
"description": "A simpler way to useReducers",
"main": "dist/index.js",
"module": "es/index.js",
"repository": {
"type": "git",
"url": "https://github.com/H-jx/use-model.git"
},
"dependencies": {},
"devDependencies": {
"@testing-library/react-hooks": "^3.2.1",
"@types/jest": "^24.9.1",
"@types/mocha": "^7.0.2",
"@types/react": "^16.9.34",
"cross-env": "^7.0.2",
"immer": "^6.0.5",
"immutable": "^4.0.0-rc.12",
"jest": "^24.8.0",
"react": "^16.13.1",
"react-test-renderer": "^16.9.0",
"rollup": "^1.12.2",
"rollup-plugin-babel": "^4.3.2",
"rollup-plugin-node-resolve": "^5.0.0",
"rollup-plugin-typescript2": "^0.21.1",
"rollup-plugin-uglify": "^6.0.2",
"ts-jest": "^25.4.0",
"tslint": "^5.14.0",
"typescript": "^3.4.5"
},
"scripts": {
"build:es": "cross-env NODE_ENV=production:es rollup -c",
"build:min": "cross-env NODE_ENV=production:min rollup -c",
"build": "npm run test && npm run build:es && npm run build:min",
"test": "jest --colors --onlyChanged"
},
"files": [
"dist",
"lib",
"es"
],
"author": "",
"license": "ISC"
}