-
-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpackage.json
71 lines (71 loc) · 1.58 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
{
"name": "sql-template-tag",
"version": "5.2.1",
"description": "ES2015 tagged template string for preparing SQL statements, works with `pg`, `mysql`, `sqlite` and `oracledb`",
"keywords": [
"sql",
"template",
"string",
"tag",
"es2015",
"es6",
"pg",
"postgres",
"mysql",
"sqlite",
"oracledb",
"oracle"
],
"homepage": "https://github.com/blakeembrey/sql-template-tag",
"bugs": {
"url": "https://github.com/blakeembrey/sql-template-tag/issues"
},
"repository": {
"type": "git",
"url": "git://github.com/blakeembrey/sql-template-tag.git"
},
"license": "MIT",
"author": {
"name": "Blake Embrey",
"email": "hello@blakeembrey.com",
"url": "http://blakeembrey.me"
},
"type": "module",
"exports": "./dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist/"
],
"scripts": {
"benchmark": "tsx benchmarks/index.ts",
"build": "ts-scripts build",
"format": "ts-scripts format",
"lint": "ts-scripts lint",
"prepare": "ts-scripts install",
"prepublishOnly": "npm run build",
"specs": "ts-scripts specs",
"test": "ts-scripts test"
},
"devDependencies": {
"@borderless/ts-scripts": "^0.15.0",
"@types/bytes": "^3.1.0",
"@types/node": "^20.5.9",
"@vitest/coverage-v8": "^1.5.0",
"bytes": "^3.1.0",
"rimraf": "^5.0.1",
"tsx": "^4.6.0",
"typescript": "^5.2.2",
"vitest": "^1.5.0"
},
"engines": {
"node": ">=14"
},
"publishConfig": {
"access": "public"
},
"ts-scripts": {
"project": [
"tsconfig.build.json"
]
}
}