forked from mobxjs/mobx-react
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
100 lines (100 loc) · 2.78 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
{
"name": "mobx-react",
"version": "5.4.3",
"description": "React bindings for MobX. Create fully reactive components.",
"main": "index.js",
"jsnext:main": "index.module.js",
"module": "index.module.js",
"react-native": "native.js",
"typings": "index",
"repository": {
"type": "git",
"url": "https://github.com/mobxjs/mobx-react.git"
},
"scripts": {
"prettier": "prettier --write \"**/*.js\" \"**/*.ts\"",
"test": "jest && npm run test:ts",
"test:ts": "tsc -p test/ts",
"test:travis": "npm run build && jest && npm run test:ts",
"build": "node build-rollup.js && shx cp src/index.d.ts index.d.ts && shx cp src/index.d.ts native.d.ts && shx cp src/index.d.ts custom.d.ts",
"watch": "jest --watch"
},
"author": "Michel Weststrate",
"license": "MIT",
"bugs": {
"url": "https://github.com/mobxjs/mobx/issues"
},
"homepage": "https://mobxjs.github.io/mobx",
"peerDependencies": {
"mobx": "^4.0.0 || ^5.0.0",
"react": "^0.13.0 || ^0.14.0 || ^15.0.0 || ^16.0.0"
},
"devDependencies": {
"@babel/core": "^7.1.0",
"@babel/plugin-proposal-class-properties": "^7.1.0",
"@babel/plugin-proposal-decorators": "^7.1.0",
"@babel/plugin-transform-react-jsx": "^7.0.0",
"@babel/preset-env": "^7.1.0",
"@types/create-react-class": "^15.6.0",
"@types/node": "^10.0.0",
"@types/prop-types": "^15.5.2",
"@types/react": "^16.0.13",
"@types/react-dom": "^16.0.1",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^23.6.0",
"create-react-class": "^15.6.2",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.0.0",
"husky": "^1.0.0",
"jest": "^23.6.0",
"jest-environment-jsdom": "^23.4.0",
"lint-staged": "^7.0.5",
"lodash": "^4.17.4",
"mobx": "^5.0.0",
"opn-cli": "^3.1.0",
"prettier": "^1.7.2",
"prop-types": "^15.6.0",
"react": "^16.6.3",
"react-dom": "^16.6.3",
"react-test-renderer": "^16.6.3",
"regenerator-runtime": "^0.12.1",
"request": "^2.83.0",
"rollup": "^0.66.2",
"rollup-plugin-alias": "^1.3.0",
"rollup-plugin-babel": "^4.0.3",
"rollup-plugin-commonjs": "^9.0.0",
"rollup-plugin-filesize": "^5.0.0",
"rollup-plugin-node-resolve": "^3.0.0",
"rollup-plugin-replace": "^2.1.0",
"rollup-plugin-uglify": "^6.0.0",
"shelljs": "^0.8.2",
"shx": "^0.3.2",
"typescript": "^2.6.0"
},
"dependencies": {
"hoist-non-react-statics": "^3.0.0",
"react-lifecycles-compat": "^3.0.2"
},
"keywords": [
"mobx",
"mobservable",
"react-component",
"react",
"reactjs",
"reactive"
],
"lint-staged": {
"*.{ts,js}": [
"prettier --write",
"git add"
]
},
"jest": {
"testURL": "http://127.0.0.1/"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}