-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.05 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.05 KB
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
{
"name": "serverless-frontend-plugin",
"version": "2.0.2",
"description": "Serverless plugin for deploying frontend apps",
"main": "index.js",
"homepage": "https://github.com/rogersgt/serverless-frontend-plugin#README.md",
"keywords": [
"serverless",
"frontend",
"plugin",
"cloudfront"
],
"author": {
"name": "Grady T Rogers",
"email": "gradytrogers@gmail.com",
"url": "https://github.com/rogersgt"
},
"scripts": {
"lint": "eslint .",
"test:unit": "mocha tests/unit/*.spec.js",
"test": "npm run lint && npm run test:unit"
},
"devDependencies": {
"aws-sdk": "2.1039.0",
"chai": "4.3.4",
"eslint": "7.32.0",
"eslint-config-google": "0.14.0",
"eslint-config-recommended": "4.1.0",
"mocha": "9.2.2",
"serverless": "3.3.x",
"serverless-offline": "8.8.1"
},
"peerDependencies": {
"aws-sdk": "2.x",
"serverless": "3.x"
},
"engines": {
"node": ">=14.0"
},
"license": "MIT",
"dependencies": {
"mime-types": "2.1.34",
"recursive-readdir": "2.2.3"
}
}