-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.53 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
{
"name": "podil",
"version": "0.3.7",
"description": "Lightweight and secure database migration tool",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"files": [
"dist"
],
"scripts": {
"build": "rm -rf dist/ && npm run build:esm && npm run build:cjs",
"build:esm": "tsc",
"build:cjs": "tsc --module CommonJS --outDir dist/cjs",
"start": "tsc && node dist/esm/index.js",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --fix --ext .ts",
"test": "TS_NODE_PROJECT='test/tsconfig.json' mocha --timeout 30000 -r ts-node/register ./test/**/*Test.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/podiljs/podil.git"
},
"keywords": [
"node.js",
"sql",
"database",
"db",
"migration",
"postgres",
"versioning",
"security"
],
"author": {
"name": "Sasha Shpota",
"url": "https://shpota.com"
},
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/podiljs/podil/issues"
},
"homepage": "https://github.com/podiljs/podil#readme",
"devDependencies": {
"@types/mocha": "^10.0.7",
"@types/pg": "^8.11.8",
"@typescript-eslint/eslint-plugin": "^6.11.0",
"eslint": "^8.54.0",
"eslint-config-standard-with-typescript": "^43.0.1",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-n": "^16.3.1",
"eslint-plugin-promise": "^6.1.1",
"mocha": "^10.7.3",
"testcontainers": "^10.13.0",
"ts-node": "^10.9.1",
"typescript": "^5.5.4"
},
"peerDependencies": {
"pg": "*"
}
}