-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.17 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
{
"name": "prep-composer",
"version": "1.2.0",
"description": "A lightweight JavaScript utility that facilitates convenient and safe composition of SQL statements by automatically managing and escaping variable parts.",
"keywords": [
"sql",
"query",
"builder",
"prepared statements",
"escaping"
],
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "jest",
"build": "rollup -c",
"prepublishOnly": "npm run build"
},
"files": [
"dist/**/*"
],
"author": "Alexander Steinhoff",
"license": "MIT",
"devDependencies": {
"@jest/globals": "^29.7.0",
"@rollup/plugin-commonjs": "^26.0.1",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-typescript": "^11.1.6",
"@types/jest": "^29.5.12",
"@types/sql.js": "^1.4.9",
"@types/sqlstring": "^2.3.2",
"jest": "^29.7.0",
"rollup": "^4.18.0",
"sql.js": "^1.10.3",
"sqlstring": "^2.3.3",
"ts-jest": "^29.1.4",
"typescript": "^5.4.5"
},
"dependencies": {
"tslib": "^2.6.3"
},
"repository": {
"type": "git",
"url": "https://github.com/lexmuc/prep-composer.git"
}
}