-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
48 lines (48 loc) · 1.1 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
{
"name": "mobx-reactor",
"version": "0.4.0",
"description": "Connect MobX data stores to functional stateless React components with flux-like async actions and unidirectional data flow.",
"main": "lib/index.js",
"scripts": {
"build": "babel src --out-dir lib",
"lint": "eslint src/**/*.js",
"test": "ava"
},
"ava": {
"files": [
"tests/*.js"
],
"source": [
"src/*.js"
],
"require": [
"babel-register",
"babel-polyfill"
],
"babel": "inherit"
},
"keywords": [
"MobX",
"React"
],
"author": "Alexander M. Sauer-Budge",
"license": "MIT",
"peerDependencies": {
"mobx": "^2.6.5",
"react": "^15.4.1"
},
"devDependencies": {
"ava": "^0.17.0",
"babel-cli": "^6.6.5",
"babel-core": "^6.7.4",
"babel-loader": "^6.2.4",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-polyfill": "^6.7.4",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "^6.5.0",
"core-decorators": "^0.14.0",
"react-dom": "^15.4.1"
},
"dependencies": {}
}