-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.38 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
{
"name": "knemm",
"version": "0.1.5",
"description": "Intuitive SQL schema management with declarative YAML",
"main": "cmd.js",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/asteinarson/knemm.git"
},
"files": ["lib","shell"],
"scripts": {
"test": "jest"
},
"bin": {
"knemm": "./shell/knemm",
"knemm_jsl": "./lib/launch-knemm.js",
"knedb": "./shell/knedb",
"knedb_jsl": "./lib/launch-knedb.js"
},
"keywords": ["database","sql","schema","declarative","management"],
"author": "Arne Steinarson (https://github.com/asteinarson)",
"license": "GPLv3",
"jest": {
"transform": {
"^.+\\.(ts|tsx)$": "ts-jest"
},
"testEnvironment": "node",
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"modulePathIgnorePatterns" : [".*\\.d.ts"]
},
"devDependencies": {
"@types/jest": "^26.0.23",
"@types/js-yaml": "^4.0.0",
"@types/node": "^14.14.37",
"@types/rimraf": "^3.0.0",
"jest": "^26.6.3",
"rimraf": "^2.7.1",
"ts-jest": "^26.5.5",
"typescript": "^4.2.3"
},
"dependencies": {
"commander": "^7.2.0",
"dotenv": "^8.2.0",
"js-yaml": "^4.0.0",
"knex": "^0.95.4",
"knex-schema-inspector": "^1.2.2",
"mysql": "^2.18.1",
"pg": "^8.5.1",
"sqlite3": "^5.0.2"
}
}