-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 2.38 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
72
73
74
75
76
{
"name": "@konsumation/db-level",
"version": "0.0.0-semantic-release",
"publishConfig": {
"access": "public",
"provenance": true
},
"types": "./types/master.d.mts",
"exports": {
".": {
"types": "./types/master.d.mts",
"default": "./src/master.mjs"
}
},
"description": "timeseries database on leveldb",
"keywords": [
"leveldb",
"timeseries"
],
"contributors": [
{
"name": "Markus Felten",
"email": "markus.felten@gmx.de"
},
{
"name": "Konstantin Karpman"
}
],
"license": "BSD-2-Clause",
"scripts": {
"prepare": "node --run prepare:typescript",
"prepare:typescript": "tsc --allowJs --declaration --emitDeclarationOnly --declarationDir types --resolveJsonModule --target es2024 --lib esnext -m esnext --module nodenext --moduleResolution nodenext --rootDir src ./src**/*.mjs",
"test": "node --run test:ava",
"test:ava": "ava --timeout 4m tests/*-ava.mjs tests/*-ava-node.mjs",
"cover": "c8 -x 'tests/**/*' --temp-directory build/tmp ava --timeout 4m tests/*-ava.mjs tests/*-ava-node.mjs && c8 report -r lcov -o build/coverage --temp-directory build/tmp",
"docs": "documentation readme --section=API ./src**/*.mjs",
"lint": "node --run lint:docs && node --run lint:typescript",
"lint:docs": "documentation lint ./src**/*.mjs",
"lint:typescript": "tsc --allowJs --checkJs --noEmit --resolveJsonModule --target es2024 --lib esnext -m esnext --module nodenext --moduleResolution nodenext ./src**/*.mjs"
},
"dependencies": {
"@konsumation/model": "^7.3.0",
"classic-level": "^2.0.0"
},
"devDependencies": {
"@konsumation/db-test": "^4.2.17",
"@types/node": "^22.13.4",
"ava": "^6.2.0",
"browser-ava": "^2.2.26",
"c8": "^10.1.3",
"documentation": "^14.0.3",
"semantic-release": "^24.2.2",
"tmp": "0.2.3",
"typescript": "^5.7.3"
},
"engines": {
"node": ">=20.18.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/konsumation/db-level.git"
},
"bugs": {
"url": "https://github.com/konsumation/db-level/issues"
},
"homepage": "https://github.com/konsumation/db-level#readme",
"template": {
"inheritFrom": [
"arlac77/template-github-action",
"arlac77/template-javascript-component",
"arlac77/template-typescript",
"arlac77/template-vscode",
"konsumation/template"
]
}
}