forked from sgraham785/flywaydb-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.49 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.49 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
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
{
"name": "@microcode/flywaydb-cli",
"version": "0.5.3-5.2.4",
"description": "Install latest flywaydb-cli as a node module",
"main": "dist/installer.js",
"bin": {
"flyway": "./bin/flyway"
},
"scripts": {
"start": "babel src -w -d dist",
"build": "babel src -d dist",
"install": "node dist/installer.js",
"test": "nyc ava",
"test:watch": "ava --watch --verbose",
"prepublish": "rm ./bin/flyway && touch ./bin/flyway"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sgraham785/flywaydb-cli.git"
},
"keywords": [
"flyway",
"flywaydb",
"flywaydb-cli",
"database-migrations"
],
"author": "Sean Graham",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/sgraham785/flywaydb-cli/issues"
},
"homepage": "https://github.com/sgraham785/flywaydb-cli#readme",
"dependencies": {
"extract-zip": "^1.6.5",
"filesize": "^3.5.9",
"progress": "^2.0.0",
"request": "^2.81.0",
"request-progress": "^3.0.0",
"request-promise": "^4.2.1",
"rimraf": "^2.6.1"
},
"devDependencies": {
"@ava/babel-preset-stage-4": "^1.0.0",
"ava": "^0.19.1",
"babel-cli": "^6.24.1",
"babel-preset-es2015": "^6.24.1",
"nyc": "^10.3.2",
"rewire": "^2.5.2",
"sinon": "^2.2.0",
"standard": "^10.0.2"
},
"ava": {
"require": "babel-register",
"babel": "inherit"
},
"babel": {
"presets": [
"@ava/stage-4"
]
},
"flyway": {
"version": "5.2.4"
}
}