-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
43 lines (43 loc) · 1.11 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
{
"name": "flumpt",
"version": "0.3.1",
"description": "Conceptual Implementation of EventEmitter based Flux.",
"main": "lib/flumpt.js",
"scripts": {
"prepublish": "babel src --out-dir lib",
"test": "babel-node test/flumpt-test.js"
},
"author": "mizchi",
"license": "MIT",
"peerDependencies": {
"react": ">=15"
},
"directories": {
"test": "test"
},
"devDependencies": {
"babel-cli": "^6.3.15",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-es2015-modules-commonjs": "^6.3.13",
"babel-polyfill": "^6.3.14",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.3.13",
"babel-preset-stage-2": "^6.3.13",
"babelify": "^7.3.0",
"browserify": "^14.1.0",
"react": "^15.1.0",
"react-dom": "^15.1.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mizchi/flumpt.git"
},
"bugs": {
"url": "https://github.com/mizchi/flumpt/issues"
},
"homepage": "https://github.com/mizchi/flumpt#readme",
"dependencies": {
"promised-reducer": "^0.1.0",
"prop-types": "^15.5.8"
}
}