-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 894 Bytes
/
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
{
"name": "saveqlite",
"version": "1.1.2",
"description": "Incremental backup system for SQLite databases",
"main": "./build/index.js",
"types": "./build/index.d.ts",
"files": [
"build"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsc",
"test": "echo \"No test specified\" && exit 0"
},
"keywords": [
"javascript",
"typescript",
"sqlite",
"sqlite3",
"backup",
"incremental"
],
"repository": {
"type": "git",
"url": "git+https://github.com/barthofu/saveqlite.git"
},
"author": "Bartholomé Gili",
"license": "ISC",
"bugs": {
"url": "https://github.com/barthofu/saveqlite/issues"
},
"homepage": "https://github.com/barthofu/saveqlite#readme",
"dependencies": {
"fs": "^0.0.1-security"
},
"devDependencies": {
"@types/node": "^18.0.0",
"typescript": "^4.7.4"
}
}