forked from tabuckner/node-liquibase
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
97 lines (97 loc) · 2.37 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
{
"name": "liquibase",
"version": "1.0.1",
"description": "Node.js wrapper for Liquibase",
"main": "lib/index.js",
"files": [
"lib"
],
"scripts": {
"build:lib": "npm run build:js && npm run copy:dependencies",
"build:js": "tsc",
"watch:js": "tsc -w",
"copy:dependencies": "npm run copy:liquibase && npm run copy:drivers",
"copy:liquibase": "ncp ./bin/liquibase ./lib/liquibase",
"copy:drivers": "ncp ./drivers ./lib/drivers",
"clean:lib": "rimraf ./lib/**",
"start": "npm run build && npm run watch:lib",
"watch:lib": "nodemon lib/index.js",
"test": "nyc --report-dire=coverage --reporter=lcov ava ",
"semantic-release": "semantic-release"
},
"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": "liquibase",
"license": "MIT",
"bugs": {
"url": "https://github.com/liquibase/node-liquibase/issues"
},
"homepage": "https://github.com/liquibase/node-liquibase#readme",
"devDependencies": {
"@ava/babel": "^1.0.1",
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.6",
"@babel/preset-env": "^7.9.6",
"@semantic-release/git": "^9.0.0",
"ava": "^3.8.1",
"dotenv": "^8.2.0",
"esm": "^3.2.25",
"ncp": "^2.0.0",
"nodemon": "^2.0.3",
"nyc": "^15.0.1",
"rimraf": "^3.0.2",
"semantic-release": "^17.0.7",
"tsc": "^1.20150623.0",
"typescript": "^4.2.4"
},
"dependencies": {},
"ava": {
"nodeArguments": [
"--experimental-modules"
],
"require": [
"esm"
]
},
"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 %>"
}
]
]
}
}