-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
81 lines (81 loc) · 1.84 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
78
79
80
81
{
"name": "@iopipe/trace",
"version": "0.0.0-semantically-released",
"description": "IOpipe plugin for tracing metrics",
"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-plugin-trace.git"
},
"files": [
"dist/"
],
"keywords": [
"serverless",
"analytics",
"metrics",
"telemetry",
"tracing",
"distributed tracing"
],
"author": "IOpipe <dev@iopipe.com>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/iopipe/iopipe-plugin-trace/issues"
},
"homepage": "https://github.com/iopipe/iopipe-plugin-trace#readme",
"devDependencies": {
"@iopipe/core": "^1",
"@iopipe/scripts": "^1.4.1",
"aws-lambda-mock-context": "^3.0.0",
"delay": "^2.0.0",
"got": "^8.3.1",
"ioredis": "^4",
"lodash": "^4.17.4",
"mongodb": "^3.3",
"redis": "^2",
"superagent": "^3.8.3"
},
"dependencies": {
"flat": "^4.0.0",
"isarray": "^2.0.4",
"lodash.pickby": "^4.6.0",
"performance-node": "^0",
"semver": "^6.3.0",
"shimmer": "^1.2.1",
"uuid": "^3.2.1"
},
"pre-commit": [
"test"
],
"jest": {
"coveragePathIgnorePatterns": [
"/node_modules/",
"dist"
]
},
"peerDependencies": {
"@iopipe/core": "1.x"
},
"eslintConfig": {
"extends": "./node_modules/@iopipe/scripts/eslint.js",
"rules": {
"import/prefer-default-export": 0
}
},
"eslintIgnore": [
"node_modules",
"dist",
"coverage"
]
}