-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.31 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
{
"name": "yakv",
"version": "1.0.1",
"description": "Yet another lightweight in-memory key-value storage",
"main": "index.js",
"scripts": {
"build": "tsc -p .",
"start": "node ./dist/index.js",
"dev": "npm run build && npm run start",
"test": "jest --detectOpenHandles",
"test:coverage": "jest --coverage --detectOpenHandles"
},
"repository": {
"type": "git",
"url": "https://github.com/w666/yakv.git"
},
"keywords": [
"key-value",
"cache",
"in-memory",
"database",
"storage"
],
"author": "Vasily Martynov",
"license": "MIT",
"exports": {
".": "./dist/index.js",
"./store": "./dist/src/kvStore.js",
"./server": "./dist/src/kvHttpServer.js",
"./types": "./dist/src/types.js"
},
"dependencies": {
"express": "^4.21.2",
"typescript": "^5.7.3"
},
"devDependencies": {
"@jest/globals": "^29.7.0",
"@types/axios": "^0.14.4",
"@types/express": "^5.0.0",
"@types/jest": "^29.5.14",
"@types/node": "^22.13.0",
"@types/supertest": "^6.0.2",
"axios": "^1.7.9",
"jest": "^29.7.0",
"supertest": "^7.0.0",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2"
}
}