forked from liquibase/node-liquibase
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
102 lines (102 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
{
"name": "node-liquibase",
"version": "2.0.0",
"description": "Node.js wrapper for Liquibase",
"bin": {
"node-liquibase": "dist/cli.js"
},
"main": "dist/index.js",
"module": "dist/node-liquibase-ts.esm.js",
"typings": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"start": "tsdx watch",
"build": "yarn build:library && yarn build:cli && yarn copy:dependencies",
"build:library": "tsdx build",
"build:cli": "yarn tsup ./src/cli.ts",
"test": "tsdx test",
"test:watch": "yarn jest --watchAll",
"lint": "tsdx lint",
"copy:dependencies": "yarn copy:liquibase && yarn copy:drivers",
"copy:liquibase": "ncp ./bin/liquibase ./dist/liquibase",
"copy:drivers": "ncp ./drivers ./dist/drivers",
"semantic-release": "semantic-release",
"tsup": "tsup"
},
"engines": {
"node": ">=6.9.0"
},
"repository": {
"type": "git",
"url": "https://github.com/liquibase/node-liquibase.git"
},
"keywords": [
"liquibase",
"node",
"js",
"database",
"automation",
"source",
"control",
"sql",
"postgresql",
"migration"
],
"author": "tabuckner",
"license": "MIT",
"bugs": {
"url": "https://github.com/liquibase/node-liquibase/issues"
},
"homepage": "https://github.com/liquibase/node-liquibase#readme",
"peerDependencies": {},
"husky": {
"hooks": {
"pre-commit": "tsdx lint"
}
},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
},
"devDependencies": {
"@semantic-release/git": "^9.0.0",
"@types/jest": "^26.0.22",
"dotenv": "^8.2.0",
"husky": "^6.0.0",
"ncp": "^2.0.0",
"semantic-release": "^17.4.2",
"tsdx": "^0.14.1",
"tslib": "^2.2.0",
"tsup": "^4.8.21",
"typescript": "^4.2.4",
"yarn": "^1.22.10"
},
"release": {
"branches": [
"master"
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
[
"@semantic-release/npm",
{
"pkgRoot": "./"
}
],
[
"@semantic-release/git",
{
"assets": [
"./package.json"
],
"message": "Release <%= nextRelease.version %> - <%= new Date().toLocaleDateString('en-US', {year: 'numeric', month: 'short', day: 'numeric', hour: 'numeric', minute: 'numeric' }) %> [skip ci]\n\n<%= nextRelease.notes %>"
}
]
]
}
}