-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 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
54
55
56
57
58
59
{
"name": "@shagital/adonisjs-logger-slack",
"version": "1.3.3",
"description": "Slack driver for Adonis Logger",
"main": "index.js",
"scripts": {
"lint": "standard",
"pretest": "npm run lint",
"posttest": "npm run coverage",
"test:local": "FORCE_COLOR=true node bin/index.js --local",
"test": "nyc npm run test:local",
"test:win": "set FORCE_COLOR=true && node bin/index.js --win",
"coverage": "nyc report --reporter=text-lcov | coveralls"
},
"keywords": [
"adonisjs",
"logger",
"slack"
],
"author": {
"name": "Zacchaeus Bolaji",
"email": "[email protected]"
},
"license": "MIT",
"dependencies": {
"winston": "^3.1.0"
},
"devDependencies": {
"@adonisjs/fold": "^4.0.9",
"@adonisjs/sink": "^1.0.17",
"coveralls": "^3.0.2",
"cz-conventional-changelog": "^2.1.0",
"japa": "^2.0.6",
"japa-cli": "^1.0.1",
"nyc": "^13.1.0",
"semver": "^5.6.0",
"standard": "^12.0.1"
},
"standard": {
"globals": [
"use"
]
},
"nyc": {
"exclude": [
"bin"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"repository": {
"type": "git",
"url": "https://github.com/Shagital/adonisjs-logger-slack.git"
},
"homepage": "https://github.com/Shagital/adonisjs-logger-slack"
}