-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 892 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 892 Bytes
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
{
"name": "@aptoma/lambda-papertrail-logger",
"version": "1.1.0",
"description": "A logger to send AWS Lambda logs to Papertrail",
"author": "Gunnar Lium <gunnar@aptoma.com>",
"main": "index.js",
"repository": {
"type": "git",
"url": "git@github.com:aptoma/lambda-papertrail-logger.git"
},
"scripts": {
"test": "eslint index.js",
"ci": "npm run lint",
"lint": "eslint index.js",
"release": "release-it -n -i patch",
"release:minor": "release-it -n -i minor",
"release:major": "release-it -n -i major"
},
"dependencies": {
"moment-timezone": "^0.5.3",
"winston": "^2.2.0",
"winston-papertrail": "gunnarlium/winston-papertrail#temp-fixes"
},
"license": "MIT",
"npm": {
"publish": true
},
"github": {
"release": true
},
"devDependencies": {
"@aptoma/eslint-config": "^3.1.0",
"eslint": "^2.7.0"
}
}