-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.34 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.34 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
58
59
60
61
62
63
64
65
66
{
"name": "fl-backbone-sql",
"version": "2.5.2",
"description": "PostgreSQL, MySQL, and SQLite3 storage for BackboneORM",
"main": "./lib/index.js",
"license": "MIT",
"author": {
"name": "Gwilym Humphreys",
"url": "https://github.com/gwilymhumphreys"
},
"contributors": [
{
"name": "Kevin Malakoff",
"url": "https://github.com/kmalakoff"
}
],
"repository": {
"type": "git",
"url": "https://github.com/founderlab/fl-backbone-sql.git"
},
"keywords": [
"backbone",
"orm",
"backbone-orm",
"sql",
"mysql",
"postgres",
"pg",
"sqlite",
"sqlite3"
],
"engines": {
"node": "*"
},
"scripts": {
"test": "gulp test-postgres",
"build": "coffee -o lib -c src",
"watch": "coffee -o lib -w src",
"prepublish": "gulp build"
},
"devDependencies": {
"async": "*",
"backbone-rest": "0.7.x",
"body-parser": "1.x",
"chai": "*",
"coffee-script": "*",
"event-stream": "*",
"express": "3.x",
"gulp": "*",
"gulp-coffee": "*",
"gulp-spawn-mocha": "2.x",
"gulp-util": "*",
"mocha": "2.x",
"mysql": "2.x",
"pg": "4.x",
"sqlite3": "3.x",
"supertest": "0.13.x",
"underscore": "*"
},
"dependencies": {
"backbone": "1.x",
"backbone-orm": "0.7.x",
"knex": "0.12.1",
"lodash": "^4.15.0"
}
}