-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.02 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.02 KB
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
{
"name": "sequelize-migration",
"version": "1.0.1",
"description": "Sequelize Migration Module",
"main": "index.js",
"scripts": {
"test": "mocha ./test",
"cover": "istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- test -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/saphyre/sequelize-migration.git"
},
"keywords": [
"sequelize",
"migration"
],
"author": "Sérgio Marcelino <sergiofilhow@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/saphyre/sequelize-migration/issues"
},
"homepage": "https://github.com/saphyre/sequelize-migration#readme",
"devDependencies": {
"chai": "^3.5.0",
"coveralls": "^2.11.9",
"istanbul": "^0.4.3",
"mocha": "^2.4.5",
"mocha-lcov-reporter": "^1.2.0",
"mysql": "^2.10.2",
"pg": "^4.5.5",
"sequelize": "^3.22.0"
},
"dependencies": {
"lodash": "^4.11.2"
}
}