-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.4 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 2.4 KB
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
{
"name": "memoz",
"version": "4.2.0",
"description": "Memoz is an in-memory database that persists on disk. The data model is key-value.",
"main": "./build/index.js",
"module": "./build/index.js",
"types": "./build/index.d.ts",
"source": "./src/index.ts",
"files": [
"build"
],
"scripts": {
"test": "mocha -r ts-node/register tests/**/*.spec.ts",
"lint": "eslint .",
"build": "rollup -c",
"depcheck": "npm-check -u",
"docs": "npx compodoc -p tsconfig.json -d docs && git add . && git commit -m 'docs: update documentation'",
"commit": "npx git-cz",
"husky": "husky init",
"postinstall": "husky install",
"prepublishOnly": "pinst --disable",
"postpublish": "pinst --enable",
"release": "npx standard-version"
},
"keywords": [
"data",
"structure",
"database",
"redis",
"transaction",
"pipelining",
"performance",
"queue",
"nodejs",
"pubsub",
"backpressure",
"cache",
"ram",
"simple",
"storage",
"typescript",
"in-memory",
"disk",
"persist",
"key-value",
"string",
"list",
"set",
"sorted-set",
"hash"
],
"author": "Milad E. Fahmy <[email protected]> (https://milad-ezzat.vercel.app)",
"repository": {
"type": "git",
"url": "git+https://github.com/miladezzat/memoz.git"
},
"bugs": {
"url": "https://github.com/miladezzat/memoz/issues"
},
"homepage": "https://memoz.js.org",
"husky": {
"hooks": {
"pre-commit": "npm test && npm run lint",
"prepare-commit-msg": "git cz --hook || true"
}
},
"devDependencies": {
"@rollup/plugin-typescript": "^8.3.0",
"@types/chai": "^4.3.0",
"@types/mocha": "^9.1.0",
"@typescript-eslint/eslint-plugin": "^5.12.0",
"@typescript-eslint/parser": "^5.12.0",
"chai": "^4.3.6",
"eslint": "^8.9.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.31.0",
"husky": "^7.0.4",
"mocha": "^9.2.0",
"npm-check": "^5.9.2",
"pinst": "^2.1.6",
"rollup": "^2.67.3",
"ts-node": "^10.9.2",
"tslib": "^2.8.0",
"typescript": "^4.5.5"
}
}