forked from KevvyCodes/endb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.34 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
{
"name": "@lumoproject/endb",
"version": "0.21.3",
"description": "Simple key-value storage with support for multiple backends",
"main": "src/index.js",
"typings": "typings/index.d.ts",
"scripts": {
"test": "npm run lint:fix && ava --serial",
"test:watch": "ava --watch",
"lint": "xo src",
"lint:fix": "xo src --fix",
"docs:build": "node docs.js",
"prepublishOnly": "npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/LumoNetwork/endb.git"
},
"keywords": [
"endb",
"key-value",
"cache",
"javascript"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/LumoNetwork/endb/issues"
},
"devDependencies": {
"ava": "^3.3.0",
"docma": "^3.2.2",
"xo": "^0.25.4"
},
"xo": {
"prettier": true,
"semicolon": true,
"rules": {
"guard-for-in": 0,
"no-negated-condition": 0
},
"overrides": [
{
"files": "src/util.js",
"rules": {
"no-new-object": 0,
"no-return-assign": 0,
"no-unused-vars": 0,
"unicorn/no-process-exit": 0
}
}
]
}
}