-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
61 lines (61 loc) · 1.35 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
{
"name": "@heliomarpm/kvs",
"version": "1.0.6",
"description": "A simple and robust KeyValues Storage's library",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"author": {
"name": "Heliomar P. Marques",
"email": "heliomarpm@proton.me",
"url": "https://navto.me/heliomarpm"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/heliomarpm/keyvalues-storage/issues"
},
"homepage": "https://github.com/heliomarpm/keyvalues-storage#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/heliomarpm/keyvalues-storage.git"
},
"files": [
"dist/**/*"
],
"keywords": [
"electron",
"desktop",
"app",
"data",
"settings",
"config",
"json",
"json-db",
"keyvalues",
"db",
"localdb",
"store",
"storage"
],
"scripts": {
"build": "tsc -p tsconfig.prod.json",
"test": "jest",
"test:c": "jest --coverage",
"pub:release": "node ./cmd/modules/release/index.js"
},
"dependencies": {
"lodash": "^4.17.21",
"write-file-atomic": "^5.0.1"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/write-file-atomic": "^4.0.3",
"jest": "^29.7.0",
"open": "^10.1.0",
"semver": "^7.6.0",
"ts-jest": "^29.1.2"
},
"peerDependencies": {
"@types/lodash": "^4.17.1",
"@types/write-file-atomic": "^4.0.3"
}
}