-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.23 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.23 KB
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
{
"name": "catbox-hyperdb",
"version": "0.0.0-development",
"description": "Another HyperDB adapter for Catbox.",
"author": "Alexandre Breteau <contact@seldszar.fr> (https://seldszar.fr)",
"license": "MIT",
"main": "lib/index.js",
"homepage": "https://github.com/seldszar/catbox-hyperdb#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/seldszar/catbox-hyperdb.git"
},
"bugs": {
"url": "https://github.com/seldszar/catbox-hyperdb/issues"
},
"files": [
"lib",
"LICENSE",
"README.md"
],
"engine": {
"node": ">=8.0.0"
},
"scripts": {
"lint": "eslint --format codeframe lib",
"lint-staged": "lint-staged",
"precommit": "npm run lint-staged",
"security": "nsp check",
"semantic-release": "semantic-release",
"test": "jest"
},
"peerDependencies": {
"hyperdb": "*"
},
"devDependencies": {
"babel-eslint": "^8.0.1",
"eslint": "^4.7.2",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-prettier": "^2.6.0",
"husky": "^0.14.3",
"jest": "^23.0.0",
"lint-staged": "^7.1.2",
"nsp": "^3.2.1",
"prettier": "^1.11.1",
"semantic-release": "^15.5.0"
},
"lint-staged": {
"*.js": "eslint --format codeframe"
}
}