forked from joakimbeng/immigration-mysql
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.5 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
{
"name": "immigration-postgres",
"version": "0.0.0-development",
"description": "Postgres adapter for Immigration",
"main": "src/index.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "xo",
"test:integration": "npm run -s immigration",
"test:docker": "docker-compose up --exit-code-from immigration",
"posttest:docker": "docker-compose down",
"release": "standard-version",
"immigration": "immigration --use [./ --table migrations] -d migrations up --new",
"semantic-release": "semantic-release"
},
"repository": {
"type": "git",
"url": "https://github.com/aboviq/immigration-postgres.git"
},
"keywords": [
"postgres",
"immigration",
"migrations",
"immigration plugin"
],
"author": {
"name": "Aboviq AB",
"email": "dev@aboviq.com",
"url": "https://www.aboviq.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/aboviq/immigration-postgres/issues"
},
"homepage": "https://github.com/aboviq/immigration-postgres#readme",
"xo": {
"envs": [
"node"
],
"prettier": true,
"rules": {
"default-param-last": 0,
"unicorn/filename-case": 0,
"padding-line-between-statements": 0
}
},
"devDependencies": {
"@commitlint/cli": "^8.2.0",
"@commitlint/config-angular": "^8.2.0",
"@commitlint/travis-cli": "^8.2.0",
"husky": "^3.1.0",
"prettier": "^1.19.1",
"immigration": "^2.3.0",
"semantic-release": "^15.13.31",
"xo": "^0.25.3"
},
"dependencies": {
"pg": "^7.17.0"
},
"peerDependencies": {
"immigration": "^2.2.0"
}
}