forked from sequelize/sequelize
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
99 lines (99 loc) · 2.29 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "sequelize",
"description": "Multi dialect ORM for Node.JS/io.js",
"version": "3.14.2",
"author": "Sascha Depold <[email protected]>",
"contributors": [
{
"name": "Sascha Depold",
"email": "[email protected]"
},
{
"name": "Jan Aagaard Meier",
"email": [
]
},
{
"name": "Daniel Durante",
"email": "[email protected]"
},
{
"name": "Mick Hansen",
"email": "[email protected]"
}
],
"repository": {
"type": "git",
"url": "https://github.com/sequelize/sequelize.git"
},
"bugs": {
"url": "https://github.com/sequelize/sequelize/issues"
},
"dependencies": {
"bluebird": "^3.0.5",
"depd": "^1.0.0",
"dottie": "^1.0.0",
"generic-pool": "2.2.1",
"inflection": "^1.6.0",
"lodash": "^3.9.3",
"moment": "^2.9.0",
"moment-timezone": "^0.4.1",
"node-uuid": "~1.4.4",
"semver": "^5.0.1",
"shimmer": "1.1.0",
"toposort-class": "^1.0.1",
"validator": "^4.0.4",
"wellknown": "^0.4.0",
"wkx": "0.2.0"
},
"devDependencies": {
"babel-core": "^6.2.0",
"babel-preset-es2015": "^6.1.18",
"chai": "^3.0.0",
"chai-as-promised": "^5.1.0",
"chai-datetime": "^1.4.0",
"chai-spies": "^0.7.0",
"commander": "^2.6.0",
"continuation-local-storage": "^3.1.4",
"dox": "~0.8.0",
"git": "^0.1.5",
"hints": "^0.2.0",
"istanbul": "^0.4.0",
"jshint": "^2.8.0",
"lcov-result-merger": "^1.0.0",
"mocha": "^2.2.1",
"mysql": "~2.9.0",
"pg": "^4.2.0",
"pg-hstore": "^2.3.1",
"pg-native": "^1.8.0",
"sinon": "^1.14.1",
"sinon-chai": "^2.8.0",
"sqlite3": "^3.1.1",
"tedious": "^1.13.1",
"watchr": "~2.4.11"
},
"keywords": [
"mysql",
"sqlite",
"postgresql",
"postgres",
"mssql",
"orm",
"nodejs",
"object relational mapper"
],
"main": "index",
"scripts": {
"test": "make all",
"test-docker": "docker-compose run sequelize /bin/sh -c \"make all\"",
"test-docker-unit": "docker-compose run sequelize /bin/sh -c \"make test-unit-all\"",
"build-docker": "docker-compose build",
"docs": "node docs/docs-generator.js"
},
"engines": {
"node": ">=0.6.21"
},
"license": "MIT"
}