forked from mobxjs/mobx-react
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 2.56 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
{
"name": "mobx-react",
"version": "4.0.0",
"description": "React bindings for MobX. Create fully reactive components.",
"main": "index.js",
"typings": "index",
"repository": {
"type": "git",
"url": "https://github.com/mobxjs/mobx-react.git"
},
"scripts": {
"test": "npm run build && npm run test:console",
"test:ts": "tsc -p test/ts",
"test:build": "browserify -x react/addons -x react-native -x react/lib/ReactContext -x react/lib/ExecutionEnvironment test/*.js -o ./test/browser/test_bundle.js -t [ babelify --presets [ es2015 react ] --plugins [ transform-decorators-legacy transform-class-properties ] ]",
"test:travis": "webpack && browserify -x react-native -x react/addons -x react/lib/ReactContext -x react/lib/ExecutionEnvironment test/*.js -t [ babelify --presets [ es2015 react ] --plugins [ transform-decorators-legacy transform-class-properties ] ] | tape-run && npm run test:ts",
"test:console": "browserify -x react-native -x react/addons -x react/lib/ReactContext -x react/lib/ExecutionEnvironment test/*.js -t [ babelify --presets [ es2015 react ] --plugins [ transform-decorators-legacy transform-class-properties ] ] | tape-run | tap-spec && npm run test:ts",
"test:open": " open ./test/browser/index.html",
"test:browser": "npm run test:build && npm run test:open",
"build": "webpack && cp src/index.d.ts index.d.ts && cp src/index.d.ts native.d.ts && cp src/index.d.ts custom.d.ts",
"prepublish": "npm run build"
},
"author": "Michel Weststrate",
"license": "MIT",
"bugs": {
"url": "https://github.com/mobxjs/mobx/issues"
},
"homepage": "https://mobxjs.github.io/mobx",
"peerDependencies": {
"mobx": "^2.6.3",
"react": "^0.13.0 || ^0.14.0 || ^15.0.0"
},
"devDependencies": {
"babel-core": "^6.11.4",
"babel-loader": "^6.2.4",
"babel-plugin-transform-class-properties": "^6.11.5",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.16.0",
"babelify": "^7.3.0",
"browserify": "^13.1.0",
"empty-module": "0.0.2",
"enzyme": "^2.6.0",
"jquery": "^2.1.4",
"lodash": "^4.0.1",
"mobx": "^2.6.3",
"react": "^15.2.0",
"react-addons-test-utils": "^15.2.0",
"react-dom": "^15.2.0",
"tap-spec": "^4.1.1",
"tape": "^4.2.2",
"tape-run": "2.1.0",
"typescript": "^1.8.10",
"webpack": "^1.13.1"
},
"dependencies": {
"hoist-non-react-statics": "^1.2.0"
},
"keywords": [
"mobx",
"mobservable",
"react-component",
"react",
"reactjs",
"reactive"
]
}