forked from typicode/lowdb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.63 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": "lowdb",
"version": "3.0.0",
"description": "Tiny local JSON database for Node, Electron and the browser",
"keywords": [
"database",
"db",
"electron",
"embed",
"embedded",
"flat",
"JSON",
"local",
"localStorage",
"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",
"types": "lib",
"files": [
"lib",
"!lib/**/*.test.*",
"LICENSE-MIT",
"LICENSE-PARITY",
"LICENSE-PATRON"
],
"scripts": {
"test": "npm run build && xv lib",
"lint": "eslint src --ext .ts --ignore-path .gitignore",
"build": "del-cli lib && tsc",
"prepublishOnly": "npm run build",
"postversion": "git push && git push --tags && npm publish",
"prepare": "husky install"
},
"dependencies": {
"steno": "^2.1.0"
},
"devDependencies": {
"@commitlint/cli": "^13.1.0",
"@commitlint/config-conventional": "^13.1.0",
"@commitlint/prompt-cli": "^13.1.0",
"@sindresorhus/tsconfig": "^2.0.0",
"@types/lodash": "^4.14.172",
"@types/node": "^16.9.1",
"@typicode/eslint-config": "^0.1.2",
"del-cli": "^4.0.1",
"husky": "^7.0.2",
"lodash": "^4.17.21",
"tempy": "^2.0.0",
"typescript": "^4.4.3",
"xv": "^1.0.2"
},
"engines": {
"node": "^12.20.0 || ^14.13.1 || >=16.0.0"
}
}