-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 979 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
{
"name": "tsdiskdb",
"version": "2.1.7",
"description": "TypeScript disk-based JSON database for storing small structures with a Mongo-like interface",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"test": "jest",
"prepack": "npm run changelog && npm run build",
"changelog": "npx auto-changelog -p --template keepachangelog"
},
"author": "artus9033",
"homepage": "github.com/artus9033/tsdiskdb",
"license": "MIT",
"peerDependencies": {
"chalk": "^4.1.2",
"lodash": "^4.17.21",
"merge": "^2.1.1",
"uuid": "^9.0.0"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/lodash": "^4.17.7",
"@types/node": "^22.3.0",
"@types/uuid": "^10.0.0",
"auto-changelog": "^2.4.0",
"chalk": "^4.1.2",
"jest": "^29.7.0",
"lodash": "^4.17.21",
"merge": "^2.1.1",
"ts-jest": "^29.2.4",
"typescript": "^5.5.4",
"uuid": "^9.0.0"
},
"overrides": {
"minimatch": ">=3.1.2"
}
}