-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
86 lines (86 loc) · 2.34 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
{
"name": "mobx-delorean",
"version": "1.1.0",
"description": "MobX time travel debugger and visualization tool",
"main": "lib/index.js",
"files": [
"src",
"lib",
"dist"
],
"scripts": {
"build:lib": "babel src --out-dir lib",
"build:umd": "webpack src/index.js dist/mobx-delorean.js --config webpack.config.development.js",
"build:umd:min": "webpack src/index.js dist/mobx-delorean.min.js --config webpack.config.production.js",
"build": "npm run build:lib && npm run build:umd && npm run build:umd:min",
"lint": "eslint src test",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/BrascoJS/delorean.git"
},
"keywords": [
"mobx",
"devtools",
"time travel",
"react",
"debugger",
"debug",
"D3"
],
"author": "Max Marcus <https://github.com/max-marcus>, Mike Bieronski <https://github.com/mbieronski>, Morgan Pierson <https://github.com/morganpierson>",
"license": "MIT",
"bugs": {
"url": "https://github.com/BrascoJS/delorean/issues"
},
"npmName": "mobx-delorean",
"npmFileMap": [
{
"basePath": "/dist/",
"files": [
"*.js"
]
}
],
"homepage": "https://github.com/BrascoJS/delorean",
"devDependencies": {
"babel-cli": "^6.10.1",
"babel-core": "^6.10.4",
"babel-eslint": "^6.0.5",
"babel-loader": "^6.2.4",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-preset-es2015": "^6.9.0",
"babel-preset-es2015-loose": "^7.0.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "^6.5.0",
"babel-register": "^6.23.0",
"chai": "^3.5.0",
"eslint": "^2.13.1",
"eslint-config-airbnb": "^9.0.1",
"eslint-plugin-import": "^1.9.2",
"eslint-plugin-jsx-a11y": "^1.5.3",
"eslint-plugin-react": "^5.2.2",
"expect": "^1.20.2",
"mocha": "^3.2.0",
"style-loader": "^0.13.1",
"webpack": "^1.13.1"
},
"peerDependencies": {
"mobx": ">=2.3.0",
"react": "^15.0.0"
},
"dependencies": {
"cytoscape": "^2.7.14",
"get-params": "^0.1.2",
"jsan": "^3.1.3",
"material-ui": "^0.19.4",
"mobx": "^2.5.1",
"mobx-react": "^4.1.0",
"react": "^15.4.2",
"react-addons-css-transition-group": "^15.4.2",
"react-dom": "^15.4.2",
"react-tap-event-plugin": "^2.0.1",
"react-toolbox": "^1.3.4"
}
}