generated from JS-AK/example-automatic-deploy-ts-app-to-npm-with-scope
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.7 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
{
"name": "@js-ak/db-manager",
"version": "3.42.2",
"description": "db-manager",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"type": "module",
"main": "build/index.js",
"types": "build/index.d.ts",
"files": [
"build/lib",
"build/shared-helpers",
"build/shared-types",
"build/index.js",
"build/index.d.ts",
"LICENSE",
"README.md",
"package.json"
],
"scripts": {
"build": "tsc",
"lint": "eslint . --ext .ts",
"test": "npm run build && node ./build/test/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/JS-AK/db-manager.git"
},
"keywords": [
"pg",
"mysql",
"mysql2",
"db-manager",
"db",
"database"
],
"author": "JS-AK",
"license": "MIT",
"bugs": {
"url": "https://github.com/JS-AK/db-manager/issues"
},
"homepage": "https://github.com/JS-AK/db-manager#readme",
"dependencies": {
"@js-ak/mysql-migration-system": "1.2.0",
"@js-ak/pg-migration-system": "1.5.0",
"@types/pg": "8.11.6",
"mysql2": "3.10.1",
"pg": "8.12.0"
},
"devDependencies": {
"@semantic-release/changelog": "6.0.3",
"@semantic-release/commit-analyzer": "13.0.0",
"@semantic-release/git": "10.0.1",
"@semantic-release/github": "10.0.6",
"@semantic-release/npm": "12.0.1",
"@semantic-release/release-notes-generator": "14.0.1",
"@types/node": "20.14.8",
"@typescript-eslint/eslint-plugin": "7.13.1",
"@typescript-eslint/parser": "7.13.1",
"eslint": "8.57.0",
"eslint-plugin-sort-destructure-keys": "2.0.0",
"eslint-plugin-sort-exports": "0.9.1",
"semantic-release": "24.0.0",
"typescript": "5.5.2"
}
}