forked from sequelize/umzug
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 1.73 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
{
"name": "umzug",
"version": "2.2.0",
"description": "Framework agnostic migration tool for Node.JS",
"keywords": [
"migrate",
"migration",
"migrations",
"sequelize"
],
"main": "lib/index.js",
"dependencies": {
"babel-runtime": "^6.23.0",
"bluebird": "^3.4.1",
"lodash": "^4.17.0",
"resolve": "^1.0.0"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-plugin-dynamic-import-node": "^1.1.0",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.4.0",
"babel-register": "^6.24.1",
"chai": "^3.5.0",
"coffee-script": "^1.8.0",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-mocha": "^4.11.0",
"eslint-plugin-node": "^5.2.0",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^3.0.1",
"gulp": "^3.8.10",
"gulp-babel": "^7.0.0",
"gulp-eslint": "^4.0.0",
"gulp-mocha": "^4.3.0",
"mocha": "^3.5.3",
"sequelize": "^3.30.4",
"sinon": "^2.1.0",
"sinon-chai": "^2.14.0",
"sqlite3": "^3.1.13",
"typescript": "^2.5.2",
"yargs": "^8.0.1"
},
"scripts": {
"build": "gulp build",
"test": "gulp test"
},
"repository": {
"type": "git",
"url": "https://github.com/sequelize/umzug.git"
},
"author": "Sascha Depold <[email protected]>",
"contributors": [
{
"name": "Jukka Hyytiälä",
"email": "[email protected]"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/sequelize/umzug/issues"
},
"homepage": "https://github.com/sequelize/umzug",
"engines": {
"node": ">=4.0.0"
}
}