forked from p-baleine/grunt-knex-migrate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1015 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
39
40
41
42
43
44
45
{
"name": "grunt-knex-migrate",
"version": "0.0.2",
"description": "Grunt task for knex's migrate",
"main": "index.js",
"scripts": {
"test": "grunt test"
},
"repository": {
"type": "git",
"url": "git+https://[email protected]/gustavobap/grunt-knex-migrate.git"
},
"keywords": [
"grunt",
"migration",
"knex",
"sqlite3",
"pg",
"mysql"
],
"author": "Junpei Tajima <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/gustavobap/grunt-knex-migrate/issues"
},
"dependencies": {
"knex": "git+https://github.com/tgriesser/knex.git",
"bluebird": "~0.11.4-1",
"colors": "~0.6.2"
},
"devDependencies": {
"grunt": "~0.4.2",
"grunt-contrib-jshint": "~0.7.2",
"grunt-mocha-cli": "~1.3.0",
"matchdep": "~0.3.0",
"sqlite3": "~2.1.19",
"chai": "~1.8.1",
"glob": "~3.2.7",
"grunt-contrib-clean": "~0.5.0",
"grunt-mkdir": "~0.1.1"
},
"peerDependencies": {
"grunt": "~0.4.0"
}
}