-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 2.21 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
{
"name": "@mridang/serverless-servestatic-plugin",
"scripts": {
"prepack": "tsc",
"build": "tsc",
"test": "jest --verbose --config=jest.config.js --runInBand",
"test:watch": "npm run test -- --watch",
"test:debug": "jest --verbose --config=jest.config.js --runInBand --detectOpenHandles",
"format": "prettier --write \"**/*.{js,ts,jsx,tsx,json,css,md,html}\"",
"format:check": "prettier --check \"**/*.{js,ts,jsx,tsx,json,css,md,html}\"",
"lint": "npx eslint .",
"lint:fix": "npx eslint . --fix"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"keywords": [
"serverless",
"serverless framework",
"serverless plugin"
],
"author": {
"name": "Mridang Agarwalla",
"email": "[email protected]",
"url": "https://github.com/mridang"
},
"files": [
"dist"
],
"license": "ISC",
"description": "A plugin for the serverless framework to deploy static assets to S3",
"private": false,
"peerDependencies": {
"@aws-sdk/client-s3": "^3.658.0",
"serverless": "^3.0.0"
},
"engines": {
"node": "20.x"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mridang/serverless-servestatic-plugin.git"
},
"homepage": "https://github.com/mridang/serverless-servestatic-plugin",
"bugs": "https://github.com/mridang/serverless-servestatic-plugin/issues",
"devDependencies": {
"@mridang/eslint-defaults": "^1.0.0",
"@semantic-release/commit-analyzer": "^13.0.0",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^10.0.5",
"@semantic-release/npm": "^12.0.1",
"@semantic-release/release-notes-generator": "^14.0.0",
"@serverless/test": "^11.1.1",
"@tsconfig/node20": "latest",
"@types/adm-zip": "^0.5.5",
"@types/cfn-response": "^1.0.8",
"@types/jest": "^29.5.12",
"@types/mime-types": "^2.1.4",
"@types/node": "^20.3.2",
"@types/serverless": "^3.12.22",
"adm-zip": "^0.5.16",
"aws-lambda": "^1.0.7",
"cfn-response": "^1.0.1",
"eslint": "^8.57.1",
"jest": "^29.7.0",
"log": "^6.3.1",
"mime-types": "^2.1.35",
"minimatch": "^10.0.1",
"prettier": "^3.1.1",
"semantic-release": "^24.0.0",
"serverless": "^3.38.0",
"ts-jest": "^29.1.0",
"typescript": "^5.1.3"
},
"publishConfig": {
"access": "public"
},
"version": "1.3.2"
}