forked from salsita/node-pg-migrate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
103 lines (103 loc) · 2.45 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "node-pg-migrate",
"version": "3.20.0",
"description": "Postgresql database migration management tool for node.js",
"author": "Theo Ephraim",
"contributors": [
"Salsita Software <jando@salsitasoft.com>",
"Christopher Quadflieg <chrissi92@hotmail.de>"
],
"bin": {
"node-pg-migrate": "bin/node-pg-migrate"
},
"main": "index.js",
"types": "index.d.ts",
"keywords": [
"db",
"database",
"migrate",
"migration",
"migrations",
"migrator",
"db-migrate",
"sql",
"pg",
"postgre",
"postgres",
"postgresql",
"cockroach",
"cockroachdb",
"extensible",
"expandable",
"programatic",
"programable",
"api"
],
"engines": {
"node": ">=6.0.0"
},
"bugs": {
"url": "https://github.com/salsita/node-pg-migrate/issues"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/salsita/node-pg-migrate.git"
},
"dependencies": {
"@types/pg": "^7.4.0",
"lodash": "~4.17.0",
"mkdirp": "~0.5.0",
"yargs": "~13.2.0"
},
"devDependencies": {
"@babel/cli": "7.4.4",
"@babel/core": "7.4.4",
"@babel/plugin-proposal-object-rest-spread": "7.4.4",
"@babel/preset-env": "7.4.4",
"babel-eslint": "10.0.1",
"chai": "4.2.0",
"chai-as-promised": "7.1.1",
"config": "3.1.0",
"cross-env": "5.2.0",
"dotenv": "8.0.0",
"eslint": "5.16.0",
"eslint-config-airbnb-base": "13.1.0",
"eslint-config-prettier": "4.2.0",
"eslint-plugin-import": "2.17.2",
"eslint-plugin-prettier": "3.0.1",
"eslint-plugin-security": "1.4.0",
"husky": "2.2.0",
"lint-staged": "8.1.6",
"mocha": "6.1.4",
"pg": "7.10.0",
"prettier": "1.17.0",
"proxyquire": "2.1.0",
"sinon": "7.3.2",
"sinon-chai": "3.3.0"
},
"peerDependencies": {
"pg": ">=4.3.0 <8.0.0"
},
"optionalDependencies": {
"config": ">=1.0.0",
"dotenv": ">=1.0.0"
},
"scripts": {
"compile": "babel lib/ -d dist/ && cp lib/migration-template.* dist/",
"test": "cross-env NODE_ENV=test mocha --opts ./mocha.opts test",
"migrate": "node bin/node-pg-migrate",
"lint": "eslint . bin/*",
"lintfix": "npm run lint -- --fix && prettier --write *.json *.md docs/*.md",
"prepare": "npm run compile"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": ["npm run lintfix", "git add"],
"*.{json,md}": ["prettier --write", "git add"]
}
}