forked from kristiandupont/kanel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 1.79 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
{
"name": "kanel",
"version": "1.0.0",
"keywords": [
"postgresql",
"schema",
"typescript"
],
"repository": "[email protected]:kristiandupont/kanel.git",
"license": "MIT",
"author": {
"name": "Kristian Dupont",
"url": "http://www.kristiandupont.com"
},
"main": "build/src/index.js",
"types": "build/src/index.d.ts",
"bin": {
"kanel": "./bin/kanel"
},
"files": [
"build/",
"bin/"
],
"scripts": {
"build": "tsc",
"lint": "yarn eslint . -f visualstudio --report-unused-disable-directives --ext .js,.ts",
"run-example": "node build/src/cli -c ./example/.kanelrc",
"start-example-db": "docker run -d --name dvd-rental -p 54321:5432 kristiandupont/dvdrental-image",
"stop-example-db": "docker stop dvd-rental",
"test": "yarn jest",
"version": "yarn build"
},
"prettier": {
"singleQuote": true,
"trailingComma": "es5",
"endOfLine": "auto"
},
"jest": {
"moduleFileExtensions": [
"js",
"ts"
],
"testEnvironment": "node",
"testMatch": [
"<rootDir>/src/**/*.test.(js|ts)"
],
"transform": {
"^.+\\.(ts|js)$": "ts-jest"
}
},
"dependencies": {
"chalk": "^4.1.0",
"extract-pg-schema": "^1.9.0",
"knex": "^0.21.5",
"optionator": "^0.9.1",
"pg": "^8.3.3",
"ramda": "^0.27.1",
"rmfr": "^2.0.0"
},
"devDependencies": {
"@kristiandupont/recase": "1.1.1",
"@types/jest": "26.0.19",
"@types/knex": "0.16.1",
"@types/node": "14.14.17",
"@types/ramda": "0.27.34",
"@typescript-eslint/parser": "4.11.1",
"eslint": "7.16.0",
"eslint-config-prettier": "7.1.0",
"eslint-plugin-prettier": "3.3.0",
"jest": "26.6.3",
"np": "7.2.0",
"prettier": "2.2.1",
"ts-jest": "26.4.4",
"typescript": "4.1.3"
},
"np": {}
}