-
Notifications
You must be signed in to change notification settings - Fork 36
/
Copy pathpackage.json
77 lines (77 loc) · 1.59 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
70
71
72
73
74
75
76
77
{
"name": "sails-migrations",
"version": "2.1.0",
"description": "The missing, migrations, arm of the octopus",
"main": "index.js",
"scripts": {
"start": "node index.js",
"test": "./bin/run_tests.js"
},
"repository": {
"type": "git",
"url": "git://github.com/BlueHotDog/sails-migrations.git"
},
"bin": "bin/cli.js",
"preferGlobal": true,
"keywords": [
"sails",
"sailsjs",
"sails.js",
"migrations",
"waterline"
],
"author": "BlueHotDog",
"contributors": [
{
"name": "BlueHotDog <[email protected]> https://twitter.com/DanniFriedland"
},
{
"name": "Itay Adler <[email protected]> https://twitter.com/itayad"
}
],
"licenses": [
{
"type": "MIT",
"url": "http://sails.mit-license.org/"
}
],
"files": [
"index.js",
"lib",
"bin",
"tasks",
"LICENSE",
"README.md"
],
"bugs": {
"url": "https://github.com/BlueHotDog/sails-migrations/issues"
},
"homepage": "https://github.com/BlueHotDog/sails-migrations",
"optionalDependencies": {
"pg": "4.5.5",
"mysql": "2.5.4"
},
"dependencies": {
"bluebird": "1.1.1",
"chalk": "0.5.1",
"cli-table": "0.3.1",
"commander": "2.6.0",
"interpret": "0.3.7",
"knex": "^0.13.0",
"liftoff": "^2.2.1",
"lodash": "2.4",
"optimist": "0.6.1",
"tildify": "1.0.0"
},
"peerDependencies": {
"sails": ">= 0.9 < 1"
},
"devDependencies": {
"chai": "~1.8",
"coffee-script": "^1.8.0",
"mocha": "~1.16",
"shelljs": "^0.3.0",
"should": "~2.1",
"sinon": "~1.7"
}
}