-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
87 lines (87 loc) · 2.54 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
78
79
80
81
82
83
84
85
86
87
{
"name": "react-model",
"version": "4.3.0",
"description": "The State management library for React",
"main": "./dist/react-model.js",
"module": "./dist/react-model.esm.js",
"umd:main": "./dist/react-model.umd.js",
"types": "./src/index",
"scripts": {
"build:prod": "microbundle --define process.env.NODE_ENV=production --sourcemap false --jsx React.createElement --output dist --tsconfig ./tsconfig.json",
"build:dev": "microbundle --define process.env.NODE_ENV=development --sourcemap true --jsx React.createElement --output dist --tsconfig ./tsconfig.json",
"commit": "git-cz",
"lint-ts": "tslint -c tslint.json 'src/**/*.ts'",
"lint-md": "remark .",
"test": "jest --silent",
"test:coverage": "jest --collect-coverage --silent"
},
"keywords": ["react", "model", "state-management", "react-hooks"],
"author": "ArrayZoneYour <hustliyidong@gmail.com>",
"license": "MIT",
"dependencies": {
"immer": ">=8.0.1 <10.0.0"
},
"peerDependencies": {
"react": ">=16.3.0",
"react-dom": ">=16.3.0",
"typescript": ">=3.9.0"
},
"devDependencies": {
"@commitlint/cli": "^16.3.0",
"@commitlint/config-conventional": "^16.2.4",
"@testing-library/react": "^10.0.1",
"@testing-library/react-hooks": "^2.0.1",
"@types/babel__core": "^7.1.1",
"@types/babel__template": "^7.0.2",
"@types/faker": "^5.5.3",
"@types/jest": "^25.1.0",
"@types/node": "^14.0.0",
"@types/react": "^16.9.1",
"@types/react-dom": "^16.8.0",
"commitizen": "^4.0.0",
"cz-conventional-changelog": "^3.0.0",
"faker": "^5.5.3",
"husky": "^4.0.2",
"jest": "^24.1.0",
"microbundle": "^0.12.3",
"prettier": "^2.0.0",
"react": "^16.8.4",
"react-dom": "^16.8.4",
"react-test-renderer": "^16.8.6",
"remark-cli": "^10.0.1",
"remark-lint": "^9.1.1",
"remark-preset-lint-recommended": "^6.1.2",
"ts-jest": "^26.0.0",
"tslint": "^5.14.0",
"typescript": "^3.4.5"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/byte-fe/react-model"
},
"resolutions": {
"minimist": ">=1.2.6"
},
"bugs": {
"url": "https://github.com/byte-fe/react-model/issues"
},
"homepage": "https://github.com/byte-fe/react-model#readme",
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"browserslist": [
"edge 17",
"firefox 70",
"chrome 48",
"safari 12.1",
"android 4.0",
"samsung 9.2"
]
}