-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
77 lines (77 loc) · 1.71 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "@iopipe/logger",
"version": "0.0.0-semantically-released",
"description": "IOpipe plugin for logging",
"main": "dist/index.js",
"scripts": {
"build": "iopipe-scripts build --ignore __mocks__/*,*.test.js",
"commit": "iopipe-scripts commit",
"lint": "iopipe-scripts lint",
"prepublishOnly": "npm run build",
"prepare": "npm run build",
"release": "iopipe-scripts release",
"test": "iopipe-scripts test",
"validate": "iopipe-scripts validate"
},
"repository": {
"type": "git",
"url": "git+https://github.com/iopipe/iopipe-js-logger.git"
},
"files": [
"dist/"
],
"keywords": [
"serverless",
"analytics",
"metrics",
"telemetry",
"tracing",
"distributed tracing",
"lambda",
"logging",
"logs",
"logger"
],
"author": "IOpipe <[email protected]>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/iopipe/iopipe-js-logger/issues"
},
"homepage": "https://github.com/iopipe/iopipe-js-logger#readme",
"devDependencies": {
"@iopipe/scripts": "^1.4.1",
"aws-lambda-mock-context": "^3.0.0",
"cross-spawn": "^6.0.5",
"delay": "^3",
"fs-extra": "^6.0.1",
"lodash": "^4.17.4",
"nock": "^9.4.1"
},
"dependencies": {
"@iopipe/core": "^1.13",
"simple-get": "^3.0.2"
},
"pre-commit": [
"test"
],
"jest": {
"testPathIgnorePatterns": [
"/node_modules/",
"dist",
"testProject"
]
},
"peerDependencies": {},
"eslintConfig": {
"extends": "./node_modules/@iopipe/scripts/eslint.js",
"rules": {
"import/prefer-default-export": 0,
"no-console": 0
}
},
"eslintIgnore": [
"node_modules",
"dist",
"coverage"
]
}