forked from MattiLehtinen/postgrator-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.41 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
{
"name": "postgrator-cli",
"version": "3.3.0",
"description": "Command line interface for Postgrator",
"author": "Matti Lehtinen <[email protected]> (https://twitter.com/MattiLehtinen)",
"bin": {
"postgrator": "./index.js"
},
"engines": {
"node": ">=6.0.0"
},
"scripts": {
"lint": "eslint .",
"pretest": "npm run lint",
"test": "npm run tests",
"tests": "node test/postgrator-cli-tests.js",
"prepublishOnly": "crlf --set=LF *.js",
"postpublish": "echo execute 'npm run restorecrlf' if in windows and using crlf line endings.",
"restorecrlf": "crlf --set=CRLF *.js"
},
"repository": {
"type": "git",
"url": "https://github.com/MattiLehtinen/postgrator-cli"
},
"files": [
"LICENSE.md",
"README.md",
"index.js",
"postgrator-cli.js",
"command-line-options.js"
],
"keywords": [
"cli",
"command",
"line",
"npm",
"scripts",
"postgrator",
"postgres",
"sql",
"migrator",
"migration",
"runner",
"mysql",
"sql",
"import",
"files",
"server"
],
"license": "MIT",
"dependencies": {
"command-line-args": "^5.1.1",
"command-line-usage": "^5.0.5",
"postgrator": "^3.11.1"
},
"devDependencies": {
"async": "3.1.0",
"crlf": "^1.1.1",
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.18.2",
"pg": "^7.12.1"
}
}