-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
64 lines (64 loc) · 1.93 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
{
"name": "knex-automigrate",
"version": "0.1.4",
"description": "Table schema based database migration tool, built on top of the knex.js",
"main": "index.js",
"scripts": {
"test": "jest --coverage --detectOpenHandles",
"test:migrate": "node bin/cli.js migrate:auto --safe --knexfile ./test/migration/knex.config.js --cwd ./test/migration",
"check": "npm-check",
"lint": "eslint ./",
"lintfix": "eslint ./ --fix",
"release:patch": "npm version patch --no-git-tag-version",
"prerelease": "git diff --exit-code",
"release": "npm run release:patch && export RELEASE_VER=$(node -e \"console.log(require('./package.json').version)\") && git checkout -b feature/bump-ver_${RELEASE_VER} && git add . && git commit -m \"Bump version, v${RELEASE_VER}\" &&git tag -a v${RELEASE_VER} -m \"Release version, v${RELEASE_VER}\" && git push --set-upstream origin feature/bump-ver_${RELEASE_VER} && git push origin v${RELEASE_VER}"
},
"repository": {
"type": "git",
"url": "git+https://github.com/why2pac/knex-automigrate.git"
},
"keywords": [
"nodejs",
"knexjs",
"database",
"orm",
"table",
"migration"
],
"dependencies": {
"chalk": "^4.1.2",
"commander": "^11.1.0",
"liftoff": "^5.0.0",
"minimist": "^1.2.6",
"tildify": "^2.0.0"
},
"peerDependencies": {
"knex": "^3.1.0"
},
"devDependencies": {
"@types/jest": "^29.5.14",
"eslint": "^8.17.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.26.0",
"jest": "^29.7.0",
"mysql": "^2.18.1",
"mysql2": "^3.11.4",
"ts-jest": "^29.2.5"
},
"bin": {
"knex-automigrate": "./bin/cli.js"
},
"files": [
"README.md",
"bin/*",
"lib/*",
"index.js",
"LICENSE"
],
"author": "GONZO",
"license": "MIT",
"bugs": {
"url": "https://github.com/why2pac/knex-automigrate/issues"
},
"homepage": "https://github.com/why2pac/knex-automigrate#readme"
}