-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1021 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
{
"name": "migrate-orm2",
"version": "5.0.0",
"description": "A library providing migrations using ORM2's model DSL leveraging Visionmedia's node-migrate.",
"main": "index.js",
"repository": {
"type": "git",
"url": "git://github.com/locomote/node-migrate-orm2.git"
},
"author": "nicholasf, dxg, vaskas, benkitzelman, sidorares, damsonn",
"bugs": {
"url": "https://github.com/locomote/node-migrate-orm2/issues"
},
"homepage": "https://github.com/locomote/node-migrate-orm2",
"scripts": {
"test": "ORM_PROTOCOL=postgres mocha test && ORM_PROTOCOL=mysql mocha test"
},
"engines": {
"node": ">= 6.0.0"
},
"dependencies": {
"async": "~3.2.3",
"bluebird": "^3.5.1",
"lodash": "^4.17.21",
"mkdirp": "~0.5.5",
"sql-ddl-sync": "~0.4.0"
},
"devDependencies": {
"mocha": "9.2.2",
"mysql": "^2.18.1",
"orm": "7.0.0",
"pg": "~8.7.1",
"rimraf": "2.6.1",
"shared-examples-for": "0.1.3",
"should": "13.2.1",
"sinon": "7.2.3"
}
}