-
Notifications
You must be signed in to change notification settings - Fork 51
/
package.json
73 lines (73 loc) · 2.05 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
{
"name": "serverless-newrelic-lambda-layers",
"version": "5.6.0",
"description": "Serverless plugin for NewRelic APM AWS Lambda layers.",
"main": "dist/index.js",
"files": [
"dist",
"package.json",
"README.md",
"templates"
],
"scripts": {
"build": "rm -rf dist && tsc",
"test": "jest",
"test:watch": "jest --watchAll",
"lint": "tslint -c tslint.json 'src/**/*.ts'",
"lint:fix": "tslint --fix -c tslint.json 'src/**/*.ts'",
"lint:lockfile": "lockfile-lint --path package-lock.json --type npm --allowed-hosts npm --validate-https --validate-integrity",
"generate:test:case": "yaml2json examples/nodejs/serverless.yml > tests/fixtures/example.input.service.json",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/newrelic/serverless-newrelic-lambda-layers.git"
},
"author": "New Relic",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/newrelic/serverless-newrelic-lambda-layers/issues"
},
"homepage": "https://github.com/newrelic/serverless-newrelic-lambda-layers#readme",
"devDependencies": {
"@types/fs-extra": "^9.0.13",
"@types/jest": "^29.2.0",
"@types/lodash": "^4.14.186",
"@types/node": "^18.11.6",
"@types/node-fetch": "^2.6.2",
"@types/ramda": "^0.28.18",
"get-installed-path": "^4.0.8",
"husky": "^8.0.1",
"jest": "^29.2.2",
"lockfile-lint": "^4.9.6",
"prettier": "^2.7.1",
"ramda": "^0.28.0",
"ts-jest": "^29.0.3",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"tslint-plugin-prettier": "^2.3.0",
"typescript": "^4.8.4",
"yamljs": "^0.3.0"
},
"peerDependencies": {
"@types/serverless": "^3.12.7",
"https-proxy-agent": "^5.0.0",
"lodash": "^4.17.21",
"node-fetch": "^2.6.7",
"path": "^0.12.7",
"semver": "^7.5.4",
"serverless": "4.x || 3.x"
},
"keywords": [
"lambda",
"serverless",
"sls",
"agent",
"analytics",
"metrics",
"telemetry",
"tracing",
"distributed tracing",
"layers"
]
}