-
Notifications
You must be signed in to change notification settings - Fork 71
/
Copy pathpackage.json
70 lines (70 loc) · 1.81 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
{
"name": "serverless-finch",
"version": "0.0.0-development",
"engines": {
"node": ">=14.15.5"
},
"description": "Deploy your serverless static website to AWS S3.",
"main": "lib/plugin.js",
"scripts": {
"prepare": "husky install",
"lint": "eslint \"lib/**/*.js\" \"test/**/*.js\"",
"test": "mocha \"lib/**/*.test.js\"",
"coverage": "nyc npm run test",
"integration-test": "mocha-isolated --pass-through-aws-creds \"test/integration/**/*.test.js\""
},
"repository": {
"type": "git",
"url": "https://github.com/fernando-mc/serverless-finch.git"
},
"keywords": [
"serverless",
"serverless plugins",
"lambda",
"aws",
"aws lambda",
"amazon",
"amazon web services",
"s3",
"website",
"frontend",
"serverless.com"
],
"author": "Fernando Medina Corey",
"license": "MIT",
"bugs": {
"url": "https://github.com/fernando-mc/serverless-finch/issues"
},
"homepage": "https://github.com/fernando-mc/serverless-finch#readme",
"dependencies": {
"@serverless/utils": "^6.0.2",
"mime": "^3.0.0",
"minimatch": "^5.0.1"
},
"devDependencies": {
"@commitlint/cli": "^17.6.1",
"@commitlint/config-conventional": "^16.2.1",
"@commitlint/cz-commitlint": "^17.5.0",
"@serverless/test": "^10.0.1",
"aws-sdk": "^2.1082.0",
"chai": "^4.3.6",
"chai-as-promised": "^7.1.1",
"commitizen": "^4.2.4",
"eslint": "^8.10.0",
"eslint-config-prettier": "^8.4.0",
"fs-extra": "^10.0.1",
"husky": "^7.0.4",
"lint-staged": "^13.2.1",
"log": "^6.3.1",
"memoizee": "^0.4.15",
"mocha": "^9.2.1",
"node-fetch": "^2.6.7",
"nyc": "^15.1.0",
"prettier": "^2.5.1",
"proxyquire": "^2.1.3",
"serverless": "^3.4.0",
"sinon": "^13.0.1",
"sinon-chai": "^3.7.0",
"tar": "^6.1.11"
}
}