forked from bencevans/grunt-sequelize
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
58 lines (58 loc) · 1.49 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
{
"name": "grunt-sequelize",
"description": "Sequelize migrations from Grunt",
"version": "4.0.4",
"homepage": "https://github.com/bencevans/grunt-sequelize",
"author": {
"name": "Ben Evans",
"email": "[email protected]",
"url": "http://bensbit.co.uk"
},
"repository": {
"type": "git",
"url": "https://github.com/bencevans/grunt-sequelize.git"
},
"bugs": {
"url": "https://github.com/bencevans/grunt-sequelize/issues"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/bencevans/grunt-sequelize/blob/master/LICENSE-MIT"
}
],
"main": "tasks/sequelize.js",
"engines": {
"node": ">= 0.10.0"
},
"scripts": {
"lint": "eslint ./",
"test": "npm run lint && npm run clean && _mocha ./test/**/*_spec.js",
"test-coverage": "npm run lint && npm run clean && istanbul cover _mocha --report lcovonly -- ./test/**/*_spec.js",
"coveralls": "cat coverage/lcov.info | coveralls",
"clean": "rm -rf ./test/.tmp ./coverage"
},
"devDependencies": {
"chai": "^2.3.0",
"chai-as-promised": "^5.0.0",
"coveralls": "^2.11.2",
"eslint": "^0.21.2",
"grunt": "~0.4.5",
"istanbul": "^0.3.14",
"mkdirp": "^0.5.1",
"mocha": "^2.2.5",
"sequelize": "^3.1.0",
"shared-examples-for": "^0.1.3",
"sqlite3": "^3.0.8",
"timekeeper": "0.0.5",
"tmp": "0.0.26",
"umzug": "^1.6.0"
},
"keywords": [
"gruntplugin"
],
"dependencies": {
"lodash": "^3.9.2",
"moment": "^2.10.3"
}
}