-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.48 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
{
"name": "@dixeed/backend-logger",
"version": "1.0.0",
"description": "A hapi module to log on NodeJs",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/dixeed/backend-logger.git"
},
"scripts": {
"cm": "git-cz",
"commitmsg": "commitlint -e",
"precommit": "lint-staged",
"test": "mocha --reporter spec",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"keywords": [
"backend",
"logger",
"hapi"
],
"engines": {
"node": ">=6.11.4"
},
"lint-staged": {
"test/**/*.{js,css,json}": [
"prettier --single-quote --write --print-width 100 --trailing-comma es5",
"git add"
]
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"author": "Dixeed <Tim>",
"license": "MIT",
"dependencies": {
"bluebird": "^3.5.1",
"boom": "^7.2.0",
"deepmerge": "^2.0.1",
"joi": "^13.1.2",
"jsonwebtoken": "^8.1.1",
"winston": "^2.4.0",
"winston-daily-rotate-file": "^1.7.2"
},
"devDependencies": {
"@commitlint/cli": "4.1.0",
"@commitlint/config-angular": "3.1.1",
"@dixeed/eslint-config": "1.2.0",
"chai": "4.1.2",
"commitizen": "2.9.6",
"cz-conventional-changelog": "2.0.0",
"eslint": "4.8.0",
"husky": "0.14.3",
"lint-staged": "4.2.3",
"mocha": "4.0.0",
"prettier": "1.7.4",
"semantic-release": "8.0.3"
},
"publishConfig": {
"access": "public"
}
}