-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
36 lines (36 loc) · 838 Bytes
/
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
{
"name": "reactbone",
"version": "0.0.2",
"description": "React extensions for Backbone",
"main": "lib/index.js",
"scripts": {
"build": "browserify lib/index.js -o reactbone.js",
"test": "mocha",
"test-spec": "mocah --reporter spec"
},
"repository": {
"type": "git",
"url": "https://github.com/andrejewski/reactbone.git"
},
"keywords": [
"react",
"reactjs",
"backbone",
"extension",
"class"
],
"author": "Chris Andrejewski <christopher.andrejewski@gmail.com>",
"license": "ISC",
"bugs": {
"url": "https://github.com/andrejewski/reactbone/issues"
},
"homepage": "https://github.com/andrejewski/reactbone",
"dependencies": {
"backbone": "^1.1.2",
"underscore": "^1.6.0"
},
"devDependencies": {
"browserify": "^5.9.1",
"mocha": "^1.21.3"
}
}