forked from sequelize/sequelize
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 991 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
37
38
39
{
"name": "sequelize",
"description": "MySQL ORM for Node.JS",
"version": "1.4.0",
"author": "Sascha Depold <sascha@depold.com>",
"contributors": [
{ "name": "Sascha Depold", "email": "sascha@depold.com" },
{ "name": "Meg Sharkey", "email": "meg@metamarkets.com" },
{ "name": "Chase Geigle", "email": "sky@skytrife.com" }
],
"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.5.x",
"generic-pool": "1.0.9"
},
"devDependencies": {
"jasmine-node": "1.0.22",
"sqlite3": ">=2.0.0",
"pg": "0.6.x",
"buster": "0.5.x"
},
"keywords": ["mysql", "orm", "nodejs", "object relational mapper"],
"main": "index",
"scripts": {
"test": "./node_modules/.bin/jasmine-node spec-jasmine/"
},
"bin": {
"sequelize": "bin/sequelize"
},
"engines": {
"node": ">=0.4.6"
},
"license": "MIT"
}