-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 1.54 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 1.54 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "@5app/logger",
"version": "2.3.1",
"description": "Simple logger used in 5app microservices",
"main": "src/index.js",
"scripts": {
"lint": "eslint .",
"test": "mocha",
"test:json": "mocha --reporter json"
},
"files": [
"src/"
],
"repository": {
"type": "git",
"url": "git+https://github.com/5app/logger.git"
},
"keywords": [
"logs",
"logger"
],
"author": "5app",
"license": "MIT",
"bugs": {
"url": "https://github.com/5app/logger/issues"
},
"homepage": "https://github.com/5app/logger#readme",
"devDependencies": {
"@5app/semantic-release-config": "^1.0.0",
"@commitlint/cli": "^17.0.0",
"@commitlint/config-conventional": "^17.0.0",
"eslint": "^8.8.0",
"eslint-config-5app": "^0.16.2",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-security": "^1.4.0",
"husky": "^8.0.0",
"lint-staged": "^13.0.0",
"mocha": "^10.0.0",
"semantic-release": "^19.0.2",
"sinon": "^14.0.0"
},
"lint-staged": {
"*.js": "eslint"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
],
"rules": {
"subject-case": [
2,
"never",
[
"start-case",
"pascal-case"
]
]
}
},
"release": {
"extends": "@5app/semantic-release-config"
},
"dependencies": {
"chalk": "^4.1.2"
},
"publishConfig": {
"access": "public"
}
}