forked from iopipe/serverless-plugin-iopipe
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 1.98 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
{
"author": "IOpipe <dev@iopipe.com>",
"bugs": {
"url": "https://github.com/iopipe/serverless-plugin-iopipe/issues"
},
"dependencies": {
"debug": "^2.6.3",
"fs-extra": "^2.1.2",
"jscodeshift": "^0.3.30",
"lodash": "^4.17.4",
"pify": "^2.3.0"
},
"description": "Serverless Plugin IOpipe",
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-eslint": "^7.2.1",
"babel-jest": "^19.0.0",
"babel-plugin-module-resolver": "^2.4.0",
"babel-plugin-transform-runtime": "^6.15.0",
"babel-preset-env": "^1.3.3",
"babel-preset-stage-0": "^6.24.1",
"circular-json": "^0.3.1",
"eslint": "^3.19.0",
"eslint-plugin-jest": "^19.0.1",
"jest": "^19.0.2",
"pre-commit": "^1.2.2",
"serverless": "^1.8.0"
},
"engines": {
"node": ">=6.10.0"
},
"homepage": "https://github.com/iopipe/serverless-plugin-iopipe#readme",
"jest": {
"coveragePathIgnorePatterns": [
"/node_modules/",
"example",
"dist"
]
},
"keywords": [
"lambda",
"serverless",
"sls",
"agent",
"analytics",
"metrics",
"telemetry",
"tracing",
"distributed tracing",
"jscodeshift",
"codemod"
],
"license": "Apache-2.0",
"main": "dist/index.js",
"name": "serverless-plugin-iopipe",
"pre-commit": [
"test"
],
"repository": {
"type": "git",
"url": "git+https://github.com/iopipe/serverless-plugin-iopipe.git"
},
"scripts": {
"build": "npm run folder && npm run babel && npm run copy",
"babel": "./node_modules/babel-cli/bin/babel.js src --out-dir dist --ignore **/*.test.js,**/__mocks__/**",
"copy": "node dist/util/copyDist",
"eslint": "./node_modules/eslint/bin/eslint.js src/**",
"folder": "rm -rf dist && mkdir dist",
"jest": "jest",
"jestUpdateSnapshot": "jest --updateSnapshot",
"prepublish": "npm run build",
"sls": "npm run build && npm run build --prefix example",
"test": "npm run eslint && npm run jest"
},
"version": "0.1.10"
}