-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.03 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
{
"name": "@sinfo/logger",
"version": "1.0.0",
"description": "Universal logger for all SINFO's applications",
"main": "index.js",
"scripts": {
"test": "node test.js",
"lint": "./node_modules/.bin/eslint --ext .js ."
},
"pre-commit": [
"lint"
],
"repository": {
"type": "git",
"url": "git+https://github.com/sinfo/logger.git"
},
"keywords": [
"logger",
"SINFO"
],
"author": "SINFO",
"license": "ISC",
"bugs": {
"url": "https://github.com/sinfo/logger/issues"
},
"homepage": "https://github.com/sinfo/logger#readme",
"devDependencies": {
"eslint": "^5.1.0",
"eslint-config-standard": "^12.0.0-alpha.0",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.8.0",
"eslint-plugin-standard": "^3.1.0",
"pre-commit": "^1.2.2"
},
"dependencies": {
"mailgun-js": "^0.20.0",
"moment": "^2.22.2",
"prettyjson": "^1.2.1",
"request": "^2.87.0",
"winston": "^3.0.0",
"winston-transport": "^4.2.0"
}
}