This repository has been archived by the owner on Aug 15, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
142 lines (142 loc) · 3.89 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
{
"name": "@factorialco/tentaclesql",
"description": "SQL engine from multiple sources",
"homepage": "https://github.com/factorialco/tentaclesql#readme",
"version": "1.2.5",
"main": "dist/src/executor/index.js",
"bin": {
"tentaclesql": "dist/cli.js"
},
"license": "ISC",
"author": {
"name": "Factorial",
"email": "[email protected]"
},
"contributors": [
{
"name": "Genar Trias Ortiz",
"email": "[email protected]"
},
{
"name": "Ferran Basora",
"email": "[email protected]"
},
{
"name": "Ali Deishidi",
"email": "[email protected]"
},
{
"name": "Pau Ramon Revilla",
"email": "[email protected]"
},
{
"name": "Omar Sotillo",
"email": "[email protected]"
}
],
"repository": {
"type": "git",
"url": "git+https://github.com/factorialco/tentaclesql.git"
},
"bugs": {
"url": "https://github.com/factorialco/tentaclesql/issues"
},
"keywords": [
"cli",
"rest-api",
"sqlite"
],
"dependencies": {
"better-sqlite3": "^7.4.3",
"cli-table": "^0.3.6",
"dd-trace": "^2.10.0",
"fastify": "^3.22.0",
"node-fetch": "^2.6.2",
"pino": "^7.0.2",
"pino-pretty": "^7.1.0",
"sqlite-parser": "^1.0.1",
"vorpal": "^1.12.0"
},
"devDependencies": {
"@babel/core": "^7.15.8",
"@babel/preset-env": "^7.15.8",
"@babel/preset-typescript": "^7.15.0",
"@commitlint/cli": "latest",
"@commitlint/config-conventional": "latest",
"@types/better-sqlite3": "^7.4.0",
"@types/cli-table": "^0.3.0",
"@types/jest": "^27.0.2",
"@types/node": "^16.11.1",
"@types/node-fetch": "^2.5.12",
"@types/vorpal": "^1.12.2",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"ci-publish": "latest",
"conventional-github-releaser": "latest",
"eslint": "^7.25.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.3.6",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"esno": "^0.10.1",
"finepack": "latest",
"git-authors-cli": "latest",
"jest": "^27.0.2",
"lint-staged": "latest",
"ncu": "^0.2.1",
"prettier-standard": "latest",
"rimraf": "^3.0.2",
"simple-git-hooks": "latest",
"standard": "latest",
"standard-markdown": "latest",
"standard-version": "^9.3.2",
"ts-jest": "^27.0.2",
"tsup": "^5.4.1",
"typescript": "^4.4.4"
},
"scripts": {
"build": "rimraf dist && rimraf '!(node_modules)/**/*.js' && tsup server.ts src/executor/index.ts cli.ts --format cjs,esm --dts",
"cli": "LOG_LEVEL='debug' esno cli.ts",
"lint": "eslint . --ext .ts",
"start": "esno server.ts",
"start:cli": "esno cli.ts",
"coverage": "yarn run test --collect-coverage",
"test": "jest",
"test:watch": "jest --watch",
"watch": "yarn build -- --watch",
"contributors": "(git-authors-cli && finepack && git add package.json && git commit -m 'build: contributors' --no-verify) || true",
"postrelease": "yarn run release:tags && yarn run release:github && (ci-publish || yarn publish --access=public)",
"prerelease": "yarn run update:check && yarn run contributors",
"release:github": "conventional-github-releaser -p angular",
"release:tags": "git push --follow-tags origin HEAD:main",
"release": "standard-version -a",
"update:check": "ncu -- --error-level 2",
"update": "ncu -u"
},
"jest": {
"testMatch": [
"**/?(*.)+(spec|test).[t]s?(x)"
]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"package.json": [
"finepack"
],
"*.js,!*.min.js,": [
"prettier-standard"
],
"*.md": [
"standard-markdown"
]
},
"simple-git-hooks": {
"commit-msg": "npx commitlint --edit",
"pre-commit": "npx lint-staged"
}
}