UNPKG

2.87 kBJSONView Raw
1{
2 "name": "mobx-react",
3 "version": "5.4.0",
4 "description": "React bindings for MobX. Create fully reactive components.",
5 "main": "index.js",
6 "jsnext:main": "index.module.js",
7 "module": "index.module.js",
8 "react-native": "native.js",
9 "typings": "index",
10 "repository": {
11 "type": "git",
12 "url": "https://github.com/mobxjs/mobx-react.git"
13 },
14 "scripts": {
15 "prettier": "prettier --write \"**/*.js\" \"**/*.ts\"",
16 "test": "jest && npm run test:ts",
17 "test:ts": "tsc -p test/ts",
18 "test:travis": "npm run build && jest && npm run test:ts",
19 "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",
20 "watch": "jest --watch"
21 },
22 "author": "Michel Weststrate",
23 "license": "MIT",
24 "bugs": {
25 "url": "https://github.com/mobxjs/mobx/issues"
26 },
27 "homepage": "https://mobxjs.github.io/mobx",
28 "peerDependencies": {
29 "mobx": "^4.0.0 || ^5.0.0",
30 "react": "^0.13.0 || ^0.14.0 || ^15.0.0 || ^16.0.0"
31 },
32 "devDependencies": {
33 "@babel/core": "^7.1.0",
34 "@babel/plugin-proposal-class-properties": "^7.1.0",
35 "@babel/plugin-proposal-decorators": "^7.1.0",
36 "@babel/plugin-transform-react-jsx": "^7.0.0",
37 "@babel/preset-env": "^7.1.0",
38 "@types/create-react-class": "^15.6.0",
39 "@types/node": "^10.0.0",
40 "@types/prop-types": "^15.5.2",
41 "@types/react": "^16.0.13",
42 "@types/react-dom": "^16.0.1",
43 "babel-core": "^7.0.0-bridge.0",
44 "babel-jest": "^23.6.0",
45 "create-react-class": "^15.6.2",
46 "enzyme": "^3.3.0",
47 "enzyme-adapter-react-16": "^1.0.0",
48 "husky": "^1.0.0",
49 "jest": "^23.6.0",
50 "jest-environment-jsdom": "^23.4.0",
51 "lint-staged": "^7.0.5",
52 "lodash": "^4.17.4",
53 "mobx": "^5.0.0",
54 "opn-cli": "^3.1.0",
55 "prettier": "^1.7.2",
56 "prop-types": "^15.6.0",
57 "react": "^16.0.0",
58 "react-dom": "^16.0.0",
59 "react-test-renderer": "^16.0.0",
60 "regenerator-runtime": "^0.12.1",
61 "request": "^2.83.0",
62 "rollup": "^0.66.2",
63 "rollup-plugin-alias": "^1.3.0",
64 "rollup-plugin-babel": "^4.0.3",
65 "rollup-plugin-commonjs": "^9.0.0",
66 "rollup-plugin-filesize": "^5.0.0",
67 "rollup-plugin-node-resolve": "^3.0.0",
68 "rollup-plugin-replace": "^2.1.0",
69 "rollup-plugin-uglify": "^6.0.0",
70 "shelljs": "^0.8.2",
71 "shx": "^0.3.2",
72 "typescript": "^2.6.0"
73 },
74 "dependencies": {
75 "hoist-non-react-statics": "^3.0.0",
76 "react-is": "^16.3.2",
77 "react-lifecycles-compat": "^3.0.2"
78 },
79 "keywords": [
80 "mobx",
81 "mobservable",
82 "react-component",
83 "react",
84 "reactjs",
85 "reactive"
86 ],
87 "lint-staged": {
88 "*.{ts,js}": [
89 "prettier --write",
90 "git add"
91 ]
92 },
93 "jest": {
94 "testURL": "http://127.0.0.1/"
95 },
96 "husky": {
97 "hooks": {
98 "pre-commit": "lint-staged"
99 }
100 }
101}
\No newline at end of file