-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
67 lines (67 loc) · 1.57 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
{
"name": "@iopipe/profiler",
"version": "0.0.0-semantically-released",
"description": "IOpipe plugin for running the v8 profiler on your functions",
"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-profiler.git"
},
"files": [
"dist/"
],
"keywords": [
"serverless",
"profiling"
],
"pre-commit": [
"test"
],
"author": "IOpipe, Inc <support@iopipe.com>",
"license": "Apache-2.0",
"homepage": "https://github.com/iopipe/iopipe-plugin-profiler#readme",
"engines": {
"node": ">=8.10.0"
},
"devDependencies": {
"@iopipe/scripts": "^1.4.1",
"aws-lambda-mock-context": "^3.2.1",
"lodash": "^4.17.11",
"nock": "^9.4.1",
"pre-commit": "^1.2.2",
"@iopipe/core": "^1.19.1"
},
"dependencies": {
"archiver": "^2.1.1",
"lodash.get": "^4.4.2",
"simple-get": "^3.0.3"
},
"peerDependencies": {},
"jest": {
"coveragePathIgnorePatterns": [
"/node_modules/",
"dist"
]
},
"eslintConfig": {
"extends": "./node_modules/@iopipe/scripts/eslint.js",
"rules": {
"import/prefer-default-export": 0
}
},
"eslintIgnore": [
"node_modules",
"dist",
"coverage"
]
}