-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
87 lines (87 loc) · 2.3 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
77
78
79
80
81
82
83
84
85
86
87
{
"name": "@alcalzone/jsonl-db",
"version": "3.1.1",
"description": "Simple JSONL-based key-value store",
"main": "./build/index.js",
"types": "./build/index.d.ts",
"files": [
"build/**/*.{js,d.ts,map}"
],
"repository": {
"type": "git",
"url": "git+https://github.com/AlCalzone/jsonl-db.git"
},
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=14"
},
"keywords": [
"jsonl",
"ndjson",
"value",
"store"
],
"author": {
"name": "AlCalzone",
"email": "[email protected]"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/AlCalzone/jsonl-db/issues"
},
"homepage": "https://github.com/AlCalzone/jsonl-db#readme",
"devDependencies": {
"@alcalzone/release-script": "~3.7.0",
"@alcalzone/release-script-plugin-license": "~3.5.9",
"@commitlint/cli": "^17.6.7",
"@commitlint/config-conventional": "^19.2.2",
"@tsconfig/node14": "^14.1.0",
"@types/fs-extra": "^9.0.13",
"@types/node": "^14.18.37",
"@types/proper-lockfile": "^4.1.2",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.60.1",
"@vitest/coverage-istanbul": "^0.34.3",
"commitizen": "^4.3.0",
"eslint": "^8.46.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.3",
"prettier": "^2.8.8",
"source-map-support": "^0.5.21",
"ts-node": "^10.9.1",
"typescript": "^4.9.5",
"vite": "^4.5.5",
"vitest": "^0.32.2"
},
"dependencies": {
"@alcalzone/proper-lockfile": "^4.1.3-0",
"alcalzone-shared": "^4.0.8",
"fs-extra": "^10.1.0"
},
"overrides": {
"[email protected]": "^1.2.6"
},
"scripts": {
"build": "tsc -p tsconfig.build.json",
"watch": "npm run build -- --watch",
"test:ts": "vitest",
"test:watch": "npm run test:ts -- --watch",
"test": "npm run test:watch",
"coverage": "vitest run --coverage",
"show-coverage": "npm run coverage && start ./coverage/index.html",
"lint:ts": "eslint --ext .ts src",
"lint": "npm run lint:ts",
"commit": "git-cz",
"release": "release-script",
"prepare": "husky install",
"perf": "ts-node --transpile-only test/perf.ts"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}