-
Notifications
You must be signed in to change notification settings - Fork 72
/
Copy pathpackage.json
60 lines (60 loc) · 1.42 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
{
"name": "backbone-react-component",
"version": "1.0.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": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/magalhas/backbone-react-component.git"
},
"peerDependencies": {
"backbone": "^1.2.3",
"react": "^15.3.0"
},
"dependencies": {
"underscore": "^1.8.3",
"prop-types": "^15.6.2"
},
"devDependencies": {
"backbone": "^1.2.3",
"grunt": "^0.4.5",
"grunt-cli": "^1.2.0",
"grunt-contrib-clean": "^0.6.0",
"grunt-contrib-copy": "^0.8.1",
"grunt-contrib-jasmine": "^0.9.1",
"grunt-contrib-uglify": "^0.9.2",
"grunt-docco": "^0.4.0",
"grunt-gh-pages": "^0.10.0",
"jquery": "^2.1.4",
"react": "^15.3.0",
"react-dom": "^15.3.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"
}
]
}