-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
31 lines (31 loc) · 1.02 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
{
"name": "better-sqlite-pool",
"version": "0.3.2",
"description": "A connection pool for better-sqlite3.",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"prepublishOnly": "tsc --module commonjs --target es2015 --declaration true --noImplicitThis true --noImplicitAny true index.ts",
"postpublish": "ls index.* | grep -v index.ts | xargs rm -f",
"pretest": "tsc --module commonjs --target es2015 test.ts",
"posttest": "rm -f test.js && rm -f *.db && ls index.js* | xargs rm -f",
"test": "node test"
},
"author": "A-yon Lee <the@ayon.li>",
"repository": {
"type": "git",
"url": "git+https://github.com/ayonli/better-sqlite-pool.git"
},
"bugs": {
"url": "https://github.com/ayonli/better-sqlite-pool/issues"
},
"license": "MIT",
"engines": {
"node": ">=10.0"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.4",
"better-sqlite3": "^8.4.0",
"typescript": "^4.9.5"
}
}