-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
47 lines (47 loc) · 1.19 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
{
"name": "@17media/node-logger",
"version": "2.1.1",
"description": "Centralized logger for 17.Media Node.JS projects",
"main": "lib/index.js",
"scripts": {
"build": "babel src -d lib --ignore __tests__",
"build:watch": "npm run build -- --watch",
"test": "jest",
"test:watch": "npm test -- --watch",
"lint": "eslint ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/17media/node-logger.git"
},
"keywords": [
"logger",
"slack",
"fluentd"
],
"author": "17media",
"license": "MIT",
"bugs": {
"url": "https://github.com/17media/node-logger/issues"
},
"homepage": "https://github.com/17media/node-logger#readme",
"dependencies": {
"@slack/client": "^5.0.2",
"lodash": "^4.17.19",
"superagent": "^5.3.1"
},
"devDependencies": {
"@17media/eslint-config-17media": "^2.0.0",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.2.2",
"babel-preset-env": "^1.7.0",
"coveralls": "^3.1.0",
"deep-freeze": "0.0.1",
"eslint": "^7.6.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-react": "^7.20.5",
"jest": "^26.2.2"
}
}