-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.74 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
{
"name": "glitch-db",
"version": "0.17.0",
"description": "A simple, file based key-value database",
"main": "./lib/src/index.js",
"exports": "./lib/src/index.js",
"types": "./typings/src/index.d.ts",
"type": "commonjs",
"files": [
"src/*",
"lib/src/*",
"typings/src/*"
],
"engines": {
"node": ">=16"
},
"scripts": {
"prettier": "prettier --ignore-path .gitignore --write .",
"lint": "eslint --ignore-path .gitignore .",
"build": "npm run lint && tsc",
"test": "npm run build && node lib/test/all.test.js",
"coverage": "nyc --reporter=lcov --reporter=text-summary npm run test",
"coverage-codecov": "npm run coverage && codecov",
"prepare": "husky install"
},
"lint-staged": {
"**/*": "npm run prettier"
},
"repository": {
"type": "git",
"url": "git+https://github.com/subramanian-elavathur/glitch-db.git"
},
"keywords": [
"glitch",
"db",
"database",
"file",
"simple",
"local"
],
"author": "Subramanian Elavathur",
"license": "MIT",
"bugs": {
"url": "https://github.com/subramanian-elavathur/glitch-db/issues"
},
"homepage": "https://github.com/subramanian-elavathur/glitch-db#readme",
"devDependencies": {
"@types/lru-cache": "^5.1.1",
"@types/node": "^18.7.13",
"@types/tar": "^6.1.0",
"@typescript-eslint/eslint-plugin": "^5.3.0",
"@typescript-eslint/parser": "^5.3.0",
"codecov": "^3.8.3",
"eslint": "^8.1.0",
"eslint-config-prettier": "^8.3.0",
"good-vibes": "^1.1.2",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"nyc": "^15.1.0",
"prettier": "2.7.1",
"typescript": "^4.3.5"
},
"dependencies": {
"lodash.get": "^4.4.2",
"lru-cache": "^6.0.0",
"tar": "^6.1.11"
}
}