-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
56 lines (56 loc) · 1.28 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
{
"name": "@iopipe/event-info",
"version": "0.0.0-semantically-released",
"description": "Automatically detect function event type and log derived custom metrics.",
"main": "dist/index.js",
"files": [
"dist"
],
"scripts": {
"build": "iopipe-scripts build --ignore eventSamples,*.test.js",
"commit": "iopipe-scripts commit",
"precommit": "npm run validate",
"lint": "iopipe-scripts lint",
"prepublish": "npm run build",
"release": "iopipe-scripts release",
"test": "iopipe-scripts test",
"validate": "iopipe-scripts validate"
},
"keywords": [
"js",
"iopipe",
"serverless",
"lambda",
"apiGateway",
"cloudFront",
"kinesis",
"s3"
],
"author": "IOpipe <[email protected]>",
"license": "Apache-2.0",
"devDependencies": {
"@iopipe/scripts": "^1.4.0",
"babel-plugin-idx": "^2.2.0",
"idx": "^2.3.0",
"lodash": "^4.17.4"
},
"eslintConfig": {
"extends": "./node_modules/@iopipe/scripts/eslint.js"
},
"eslintIgnore": [
"node_modules",
"dist",
"coverage"
],
"repository": {
"type": "git",
"url": "https://github.com/iopipe/iopipe-js-event-info.git"
},
"dependencies": {
"flat": "^4.0.0",
"lodash.get": "^4.4.2"
},
"peerDependencies": {
"@iopipe/core": "1.x"
}
}