-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
46 lines (46 loc) · 1.08 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
{
"name": "reflux-state-mixin",
"version": "0.8.0",
"description": "Reflux stores mixin adding 'state' syntax similar to React components. es6 classes supported",
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/yonatanmn/reflux-state-mixin.git"
},
"keywords": [
"reflux",
"mixin",
"model",
"mvc",
"state",
"store",
"event",
"events",
"connect",
"es6 classes",
"decorator"
],
"author": {
"name": "Yonatan Schreiber",
"email": "[email protected]"
},
"license": "ISC",
"dependencies": {},
"peerDependencies": {
"reflux": ">=0.2.5 <0.4.0"
},
"homepage": "https://github.com/yonatanmn/reflux-state-mixin",
"readmeFilename": "README.md",
"bugs": {
"url": "https://github.com/yonatanmn/reflux-state-mixin/issues"
},
"scripts": {
"compile": "babel --presets react,es2015,stage-0 -d lib/ src/"
},
"devDependencies": {
"babel-cli": "^6.2.0",
"babel-preset-es2015": "^6.1.18",
"babel-preset-react": "^6.1.18",
"babel-preset-stage-0": "^6.1.18"
}
}