This repository has been archived by the owner on May 24, 2022. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
65 lines (65 loc) · 1.58 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
{
"name": "grunt-sequelize",
"description": "Sequelize migrations from Grunt",
"version": "4.1.0",
"license": "MIT",
"homepage": "https://github.com/bencevans/grunt-sequelize",
"author": {
"name": "Ben Evans",
"email": "[email protected]",
"url": "http://bensbit.co.uk"
},
"contributors": [{
"name": "Dan Palma",
"email": "[email protected]",
"url": "http://danielpalma.net"
}],
"repository": {
"type": "git",
"url": "https://github.com/bencevans/grunt-sequelize.git"
},
"bugs": {
"url": "https://github.com/bencevans/grunt-sequelize/issues"
},
"main": "tasks/sequelize.js",
"engines": {
"node": ">= 8.10.0"
},
"scripts": {
"lint": "eslint ./",
"test": "npm run lint && npm run clean && _mocha ./test/**/*_spec.js",
"test-coverage": "npm run lint && npm run clean && nyc npm run test",
"coveralls": "nyc report --reporter=text-lcov | coveralls",
"clean": "rm -rf ./test/.tmp ./coverage"
},
"mocha": {
"reporter": "spec",
"ui": "bdd",
"recursive": "true"
},
"devDependencies": {
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"coveralls": "^3.0.9",
"eslint": "^6.8.0",
"grunt": "^1.0.4",
"mkdirp": "^1.0.3",
"mocha": "^7.0.1",
"nyc": "^15.0.0",
"rewire": "^4.0.1",
"sequelize": "^5.21.4",
"shared-examples-for": "^0.1.3",
"sinon": "^8.1.1",
"sqlite3": "^4.1.1",
"timekeeper": "^2.2.0",
"tmp": "^0.1.0",
"umzug": "^2.2.0"
},
"keywords": [
"gruntplugin"
],
"dependencies": {
"lodash": "^4.17.15",
"moment": "^2.10.3"
}
}