-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 963 Bytes
/
Copy pathpackage.json
File metadata and controls
39 lines (39 loc) · 963 Bytes
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
{
"author": "mren",
"bin": {
"add-migration": "./add-migration.js",
"migrate": "./cli.js"
},
"dependencies": {
"pg-connection-string": "2.0.0"
},
"devDependencies": {
"eslint": "5.7.0",
"eslint-config-airbnb-base": "13.1.0",
"eslint-plugin-import": "2.14.0",
"mocha": "5.2.0",
"mock-fs": "4.7.0",
"pg": "7.5.0",
"semver": "5.6.0"
},
"engines": {
"node": ">= 7.10.0"
},
"license": "MIT",
"main": "migrate",
"name": "pgmigrate",
"peerDependencies": {
"pg": ">=6.0.3"
},
"repository": {
"type": "git",
"url": "git://github.com/mren/pgmigrate.git"
},
"scripts": {
"lint": "eslint --max-warnings 0 --report-unused-disable-directives .",
"mocha": "mocha --recursive",
"test-pg-versions": "node test/get-all-allowed-pg-versions.js | xargs -I {} -n1 sh -c \"npm install pg@{} && npm run mocha\"",
"test": "npm run lint && npm run mocha"
},
"version": "5.1.0"
}