-
-
Notifications
You must be signed in to change notification settings - Fork 923
/
package.json
85 lines (85 loc) · 1.98 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
{
"name": "lowdb",
"version": "7.0.1",
"description": "Tiny local JSON database for Node, Electron and the browser",
"keywords": [
"database",
"db",
"electron",
"embed",
"embedded",
"flat",
"JSON",
"local",
"localStorage",
"sessionStorage",
"browser",
"esm"
],
"homepage": "https://github.com/typicode/lowdb#readme",
"bugs": {
"url": "https://github.com/typicode/lowdb/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/typicode/lowdb.git"
},
"funding": "https://github.com/sponsors/typicode",
"license": "MIT",
"author": "Typicode <[email protected]>",
"type": "module",
"exports": {
".": "./lib/index.js",
"./node": "./lib/node.js",
"./browser": "./lib/browser.js"
},
"types": "./lib",
"typesVersions": {
"*": {
"node": [
"lib/node.d.ts"
],
"browser": [
"lib/browser.d.ts"
]
}
},
"files": [
"lib",
"!lib/examples/**/*",
"!lib/**/*.test.*"
],
"scripts": {
"test": "node --import tsx/esm --test src/**/*.test.ts src/**/**/*.test.ts",
"lint": "eslint src --ext .ts --ignore-path .gitignore",
"build": "del-cli lib && tsc",
"prepublishOnly": "npm run build",
"postversion": "git push --follow-tags && npm publish",
"prepare": "husky install"
},
"dependencies": {
"steno": "^4.0.2"
},
"devDependencies": {
"@commitlint/cli": "^18.4.3",
"@commitlint/config-conventional": "^18.4.3",
"@commitlint/prompt-cli": "^18.4.3",
"@sindresorhus/tsconfig": "^5.0.0",
"@types/express": "^4.17.21",
"@types/lodash": "^4.14.202",
"@types/node": "^20.10.5",
"@typicode/eslint-config": "^1.2.0",
"del-cli": "^5.1.0",
"eslint": "^8.56.0",
"express-async-handler": "^1.2.0",
"husky": "^8.0.3",
"lodash": "^4.17.21",
"tempy": "^3.1.0",
"ts-node": "^10.9.2",
"tsx": "^4.7.0",
"typescript": "^5.3.3"
},
"engines": {
"node": ">=18"
}
}