-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
49 lines (49 loc) · 1.03 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
{
"name": "backbone-mongo",
"version": "0.6.10",
"description": "MongoDB storage for BackboneORM",
"main": "./lib/index.js",
"license": "MIT",
"author": "Kevin Malakoff (https://github.com/kmalakoff)",
"contributors": [
"Gwilym Humphreys (https://github.com/gwilymhumphreys)"
],
"repository": {
"type": "git",
"url": "https://github.com/vidigami/backbone-mongo.git"
},
"keywords": [
"backbone",
"orm",
"backbone-orm",
"mongo",
"mongodb"
],
"engines": {
"node": "*"
},
"scripts": {
"test": "ulimit -n 1024; gulp test",
"prepublish": "gulp build"
},
"devDependencies": {
"backbone-rest": "0.7.x",
"body-parser": "1.x",
"chai": "*",
"coffee-script": "*",
"express": "4.x",
"gulp": "*",
"gulp-coffee": "*",
"gulp-mocha": "*",
"gulp-util": "*",
"mocha": "*",
"event-stream": "*",
"supertest": "0.13.x"
},
"dependencies": {
"underscore": "1.x",
"backbone": "1.x",
"backbone-orm": "0.7.x",
"mongodb": "*"
}
}