forked from magalhas/backbone-react-component
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.33 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.33 KB
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
{
"name": "backbone-react-component",
"version": "0.8.0",
"filename": "backbone-react-component.js",
"description": "Backbone.React.Component is a wrapper for React.Component and brings all the power of Facebook's React to Backbone.js",
"author": {
"name": "José Magalhães",
"email": "magalhas@gmail.com"
},
"repository": {
"type": "git",
"url": "https://github.com/magalhas/backbone-react-component.git"
},
"peerDependencies": {
"backbone": "^1.1.2",
"react": "^0.13.0"
},
"dependencies": {
"underscore": "^1.7.0"
},
"devDependencies": {
"backbone": "^1.1.2",
"grunt": "^0.4.2",
"grunt-contrib-clean": "^0.5.0",
"grunt-contrib-copy": "^0.5.0",
"grunt-contrib-jasmine": "^0.6.5",
"grunt-contrib-uglify": "^0.3.3",
"grunt-docco": "^0.3.3",
"grunt-gh-pages": "^0.9.1",
"jquery": "^2.1.3",
"react": "^0.13.0"
},
"scripts": {
"test": "grunt test",
"prepublish": "grunt build && grunt doc"
},
"keywords": [
"backbone",
"react",
"data binding",
"models",
"collections",
"server",
"client",
"react-component"
],
"main": "lib/component",
"engines": {
"node": ">=0.10"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/magalhas/backbone-react-component/blob/master/LICENSE-MIT"
}
]
}