-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.41 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
{
"name": "mobx-container",
"version": "0.0.11",
"description": "simple mobx container for react component",
"main": "dist/index.js",
"jsnext:main": "es/index.js",
"files": [
"dist",
"es",
"lib"
],
"scripts": {
"clean": "rimraf dist es",
"build": "npm run build:commonjs && npm run build:es",
"prepublish": "npm run clean && npm run build",
"build:commonjs": "cross-env BABEL_ENV=commonjs babel --plugins add-module-exports lib --out-dir dist",
"build:es": "cross-env BABEL_ENV=es babel lib --out-dir es",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ali322/mobx-container.git"
},
"keywords": [
"mobx",
"react"
],
"author": "alichen",
"license": "MIT",
"bugs": {
"url": "https://github.com/ali322/mobx-container/issues"
},
"homepage": "https://github.com/ali322/mobx-container#readme",
"peerDependencies": {
"mobx": "^4.0.0",
"react": "^0.13.0 || ^0.14.0 || ^15.0.0 || ^16.0.0"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.25.0",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-preset-env": "^1.6.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"cross-env": "^5.0.1",
"rimraf": "^2.6.1"
},
"dependencies": {
"mobx-react": "^5.1.2"
}
}