forked from mobxjs/mobx-react-lite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
103 lines (103 loc) · 2.79 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "mobx-react-lite",
"version": "2.0.7",
"description": "Lightweight React bindings for MobX based on React 16.8+ and Hooks",
"main": "dist/index.js",
"jsnext:main": "dist/mobxreactlite.esm.js",
"module": "dist/mobxreactlite.esm.js",
"unpkg": "dist/mobxreactlite.umd.production.min.js",
"jsdelivr": "dist/mobxreactlite.umd.production.min.js",
"react-native": "dist/mobxreactlite.esm.js",
"typings": "dist/index.d.ts",
"types": "dist/index.d.ts",
"sideEffects": [
"batching*"
],
"repository": {
"type": "git",
"url": "https://github.com/mobxjs/mobx-react-lite.git"
},
"files": [
"dist/*",
"batching*"
],
"scripts": {
"prettier": "prettier --write \"./{src,test}/*.{js,ts,tsx}\"",
"lint": "eslint . --ext .js,.ts,.tsx",
"validate": "tsc --noEmit",
"test": "jest --watch",
"test:ci": "jest -i --coverage",
"size": "size-limit",
"coverage": "jest --coverage",
"prebuild": "rimraf dist",
"build": "yarn bundle",
"bundle": "tsdx build --name mobxReactLite --format=cjs,esm,umd --tsconfig tsconfig.build.json",
"dedup": "npx yarn-deduplicate -s fewer yarn.lock",
"release": "node publish.js"
},
"author": "Daniel K.",
"license": "MIT",
"bugs": {
"url": "https://github.com/mobxjs/mobx-react-lite/issues"
},
"homepage": "https://mobx-react.js.org",
"peerDependencies": {
"mobx": "^4.0.0 || ^5.0.0",
"react": "^16.8.0"
},
"devDependencies": {
"@babel/core": "7.8.4",
"@babel/preset-env": "7.8.4",
"@size-limit/preset-small-lib": "2.1.6",
"@size-limit/time": "2.1.6",
"@testing-library/jest-dom": "4.1.2",
"@testing-library/react": "9.3.0",
"@testing-library/react-hooks": "1.1.0",
"@types/jest": "24.0.19",
"@types/node": "12.7.12",
"@types/react": "16.9.6",
"@types/react-dom": "16.9.2",
"@typescript-eslint/eslint-plugin": "^2.19.2",
"@typescript-eslint/parser": "^2.19.2",
"coveralls": "3.0.7",
"eslint": "^6.1.0",
"eslint-plugin-react": "^7.18.3",
"husky": "3.0.9",
"jest": "24.9.0",
"jest-environment-jsdom": "24.9.0",
"jest-mock-console": "1.0.0",
"mobx": "5.14.0",
"prettier": "^1.19.1",
"pretty-quick": "^2.0.1",
"prompts": "^2.3.2",
"react": "16.10.2",
"react-dom": "16.10.2",
"react-test-renderer": "16.10.2",
"rimraf": "3.0.0",
"semver": "^7.2.2",
"shelljs": "^0.8.3",
"shx": "0.3.2",
"ts-jest": "24.1.0",
"tsdx": "0.12.3",
"typescript": "3.6.4"
},
"keywords": [
"mobx",
"mobservable",
"react-component",
"react",
"reactjs",
"reactive",
"hooks",
"observer",
"useObserver",
"useLocalStore",
"useAsObservableSource"
],
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"dependencies": {}
}