-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
96 lines (96 loc) · 2.78 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
{
"name": "@leapfrogtechnology/sync-db",
"description": "Command line utility to synchronize and version control relational database objects across databases",
"version": "2.2.0",
"license": "MIT",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"/bin/run",
"/bin/run.cmd",
"/lib",
"/assets"
],
"bin": {
"sync-db": "./bin/run"
},
"oclif": {
"bin": "sync-db",
"commands": "./lib/commands",
"plugins": [
"@oclif/plugin-help"
]
},
"repository": "https://github.com/leapfrogtechnology/sync-db",
"homepage": "https://github.com/leapfrogtechnology/sync-db",
"bugs": "https://github.com/leapfrogtechnology/sync-db/issues",
"keywords": [
"sync-db",
"dbo",
"db-synchronize",
"synchronize-db"
],
"author": "Kabir Baidhya <kabirbaidhya@gmail.com>",
"contributors": [
"Kabir Baidhya <kabirbaidhya@gmail.com>",
"Saugat Acharya <mesaugat@gmail.com>",
"Shraday Shakya <shradayshakya@gmail.com>",
"Safal Raj Pandey <safal.pandey.sp@gmail.com>"
],
"scripts": {
"build": "rm -rf lib && tsc -b",
"prepack": "yarn build",
"lint": "tslint -c tslint.json 'src/**/*.{ts,js}' 'test/**/*.{ts,js}'",
"lint:fix": "tslint --fix -c tslint.json 'src/**/*.{ts,js}' 'test/**/*.{ts,js}'",
"test": "yarn lint && yarn test:cli && yarn test:unit",
"test:coverage": "yarn test:cli && nyc yarn test:unit",
"test:cli": "mocha ./test/cli/**/*.test.ts",
"test:unit": "mocha ./test/unit/**/*.test.ts",
"watch": "tsc --watch",
"changelog": "./release.sh changelog",
"release": "./release.sh bump",
"format": "prettier --write . '**/*.{ts,js,md,yaml,json}'",
"format:check": "prettier --check . '**/*.{ts,js,md,yaml,json}'",
"doc:update": "oclif-dev readme && prettier --write README.md"
},
"dependencies": {
"@oclif/command": "^1",
"@oclif/config": "^1",
"@oclif/plugin-help": "^3",
"chalk": "^4.0.0",
"debug": "^4.1.1",
"esm": "^3.2.25",
"globby": "^10.0.2",
"knex": "^2.4.2",
"ramda": "^0.29.0",
"ts-node": "^8",
"tslib": "^1",
"yamljs": "^0.3.0"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.1",
"@oclif/dev-cli": "^1.26.0",
"@oclif/test": "^1",
"@oclif/tslint": "^3",
"@types/chai": "^4.2.7",
"@types/chai-as-promised": "^7.1.2",
"@types/debug": "^4.1.4",
"@types/mocha": "^5",
"@types/node": "^10",
"@types/ramda": "^0.29.0",
"@types/yamljs": "^0.2.30",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"execa": "^4.0.0",
"get-bin-path": "^5.0.1",
"mocha": "^10.2.0",
"nyc": "^15.0.0",
"prettier": "2.0.2",
"tslint": "^6.1.3",
"tslint-config-leapfrog": "^1.0.3",
"typescript": "^5.0.2"
},
"engines": {
"node": ">= 14.15.0"
}
}