-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 811 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 811 Bytes
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
{
"author": "Oleg Nosov <olegnosov1@gmail.com>",
"name": "sql-template-builder",
"version": "1.0.5",
"main": "./index.js",
"description": "Complex SQL query builder",
"keywords": [
"sql",
"query",
"template",
"builder"
],
"engines": {
"node": ">=14.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/olegnn/sql-template-builder"
},
"license": "MIT",
"devDependencies": {
"eslint": "^8.43.0",
"jest": "^29.5.0",
"mysql": "^2.18.1",
"pg": "^8.11.0"
},
"scripts": {
"test": "jest ./__tests__/*",
"prepublish": "yarn test",
"lint": "yarn eslint src/**/*.js examples/**/*.js __tests__/**/*.js",
"fmt": "yarn lint --fix"
},
"jest": {
"coverageDirectory": "./coverage/",
"collectCoverage": true
}
}