-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
84 lines (84 loc) · 2.36 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
82
83
84
{
"name": "serverless-offline-edge-lambda",
"version": "1.3.1",
"description": "A plugin for the Serverless Framework that simulates the behavior of AWS CloudFront Edge Lambdas while developing offline.",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"license": "Apache-2.0",
"scripts": {
"prebuild": "rimraf dist",
"build": "tsc",
"prewatch": "rimraf dist",
"watch": "tsc -w",
"test": "echo \"No test specified\"",
"lint": "tslint --project tsconfig.json",
"lint:fix": "tslint --fix --project tsconfig.json",
"commit": "git-cz",
"release": "semantic-release --no-ci",
"release:dry-run": "semantic-release --no-ci --dry-run",
"snyk-protect": "snyk protect",
"prepare": "npm run snyk-protect && npm run build && husky install"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"contributors": [
"Matt Strom <[email protected]>"
],
"repository": {
"type": "git",
"url": "https://github.com/evolv-ai/serverless-offline-edge-lambda"
},
"files": [
"dist"
],
"keywords": [
"serverless",
"offline",
"serverless-offline",
"aws",
"edge lambdas"
],
"dependencies": {
"body-parser": "^1.20.0",
"chokidar": "^3.5.3",
"connect": "^3.7.0",
"cookie-parser": "^1.4.6",
"flat-cache": "^3.0.4",
"fs-extra": "^11.1.1",
"fsevents": "^2.3.2",
"glob-to-regexp": "^0.4.1",
"http-status-codes": "^2.2.0"
},
"peerDependencies": {
"serverless": ">=1.36.0"
},
"optionalDependencies": {
"fsevents": "^2.3.2"
},
"devDependencies": {
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.1.0",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/commit-analyzer": "^9.0.2",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^8.0.6",
"@semantic-release/release-notes-generator": "^10.0.3",
"@types/aws-lambda": "^8.10.104",
"@types/body-parser": "^1.19.2",
"@types/connect": "^3.4.35",
"@types/cookie-parser": "^1.4.3",
"@types/fs-extra": "^11.0.1",
"@types/glob-to-regexp": "^0.4.0",
"commitizen": "^4.2.5",
"cz-conventional-changelog": "^3.3.0",
"husky": "^8.0.0",
"rimraf": "^3.0.2",
"semantic-release": "^19.0.5",
"snyk": "^1.1011.0",
"tslint": "^6.1.2",
"typescript": "^4.8.3"
}
}