forked from sequelize/sequelize
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.26 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
{
"name": "sequelize",
"description": "Multi dialect ORM for Node.JS",
"version": "1.5.0-beta-2",
"author": "Sascha Depold <[email protected]>",
"contributors": [
{
"name": "Sascha Depold",
"email": "[email protected]"
},
{
"name": "Meg Sharkey",
"email": "[email protected]"
},
{
"name": "Chase Geigle",
"email": "[email protected]"
},
{
"name": "Jan Aagaard Meier (Innofluence)",
"email": "[email protected]"
}
],
"dependencies": {
"mysql": "0.9.x",
"underscore": "1.2.x",
"underscore.string": "2.0.x",
"lingo": "0.0.x",
"validator": "0.3.x",
"moment": "1.1.x",
"commander": "~0.6.0",
"generic-pool": "1.0.9"
},
"devDependencies": {
"jasmine-node": "1.0.17",
"sqlite3": "~2.1.5",
"pg": "0.6.x",
"buster": "~0.6.0"
},
"keywords": [
"mysql",
"orm",
"nodejs",
"object relational mapper"
],
"main": "index",
"scripts": {
"test": "npm run test-jasmine && npm run test-buster",
"test-jasmine": "./node_modules/.bin/jasmine-node spec-jasmine/",
"test-buster": "./node_modules/.bin/buster-test"
},
"bin": {
"sequelize": "bin/sequelize"
},
"engines": {
"node": ">=0.4.6"
},
"license": "MIT"
}