This repository has been archived by the owner on Mar 8, 2024. It is now read-only.
forked from KevvyCodes/endb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.5 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
{
"name": "endb",
"version": "0.21.7",
"description": "Simple key-value storage with support for multiple backends.",
"main": "src/index.js",
"typings": "typings/index.d.ts",
"scripts": {
"test": "ava --serial",
"test:watch": "ava --watch",
"lint": "xo src",
"lint:fix": "xo src --fix",
"docs:build": "node docs.js",
"prepublishOnly": "npm run lint && npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/chroventer/endb.git"
},
"keywords": [
"endb",
"key-value",
"cache",
"javascript"
],
"author": "chroventer (https://github.com/chroventer)",
"license": "MIT",
"bugs": {
"url": "https://github.com/chroventer/endb/issues"
},
"homepage": "https://endb.js.org",
"dependencies": {
"lodash": "^4.17.15"
},
"devDependencies": {
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"ava": "^3.5.1",
"docma": "^3.2.2",
"husky": "^4.2.3",
"xo": "^0.28.1"
},
"xo": {
"prettier": true,
"rules": {
"guard-for-in": 0,
"no-negated-condition": 0,
"unicorn/no-process-exit": 0
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}