-
-
Notifications
You must be signed in to change notification settings - Fork 74
Expand file tree
/
Copy pathpackage.json
More file actions
109 lines (109 loc) · 3.59 KB
/
package.json
File metadata and controls
109 lines (109 loc) · 3.59 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
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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "osls",
"version": "3.40.1",
"description": "Open-source alternative to Serverless Framework",
"preferGlobal": true,
"homepage": "https://github.com/oss-serverless/serverless",
"repository": {
"type": "git",
"url": "git+https://github.com/oss-serverless/serverless.git"
},
"keywords": [
"serverless",
"lambda",
"aws",
"amazon",
"azure",
"google-cloud",
"apache-open-whisk",
"iot"
],
"main": "lib/serverless.js",
"types": "types/index.d.ts",
"bin": {
"serverless": "bin/serverless.js",
"sls": "bin/serverless.js",
"osls": "bin/serverless.js"
},
"dependencies": {
"@apidevtools/json-schema-ref-parser": "^15.3.5",
"@aws-sdk/client-api-gateway": "^3.975.0",
"@aws-sdk/client-cognito-identity-provider": "^3.975.0",
"@aws-sdk/client-eventbridge": "^3.975.0",
"@aws-sdk/client-iam": "^3.975.0",
"@aws-sdk/client-lambda": "^3.975.0",
"@aws-sdk/client-s3": "^3.975.0",
"@aws-sdk/credential-providers": "^3.975.0",
"@smithy/node-http-handler": "^4.6.1",
"ajv": "^8.12.0",
"ajv-formats": "^3.0.1",
"aws-sdk": "^2.1693.0",
"cachedir": "^2.3.0",
"content-disposition": "^1.1.0",
"cross-spawn": "^7.0.6",
"dayjs": "^1.11.8",
"dotenv": "^17.4.2",
"dotenv-expand": "^13.0.0",
"ext": "^1.7.0",
"fast-glob": "^3.3.3",
"fastest-levenshtein": "^1.0.16",
"filenamify": "^7.0.1",
"https-proxy-agent": "^9.0.0",
"js-yaml": "^4.1.0",
"json-cycle": "^1.5.0",
"log": "^6.3.1",
"log-node": "^8.0.3",
"memoizee": "^0.4.15",
"micromatch": "^4.0.5",
"mime-types": "^3.0.2",
"module-alias": "^2.2.3",
"object-hash": "^3.0.0",
"open": "^11.0.0",
"punycode": "^2.3.1",
"require-from-string": "^2.0.2",
"semver": "^7.5.3",
"signal-exit": "^4.1.0",
"tsx": "^4.20.3",
"type": "^2.7.2",
"undici": "^7.25.0",
"write-file-atomic": "^7.0.1",
"yauzl": "^3.3.0",
"yazl": "^3.3.1"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"adm-zip": "^0.5.10",
"aws4": "^1.12.0",
"chai": "^6.2.2",
"chai-as-promised": "^8.0.2",
"eslint": "^10.2.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import-x": "^4.16.2",
"eslint-plugin-n": "^17.24.0",
"git-list-updated": "^1.2.1",
"globals": "^17.5.0",
"jszip": "^3.10.1",
"mocha": "12.0.0-beta-9.2",
"prettier": "^3.8.3",
"proxyquire": "^2.1.3",
"sinon": "^21.1.2",
"sinon-chai": "^4.0.1",
"ws": "^8.20.0"
},
"scripts": {
"integration-test-run-package": "mocha --config test/mocha/package.cjs \"test/integration-package/**/*.tests.js\"",
"lint": "eslint .",
"lint:updated": "pipe-git-updated --ext=cjs --ext=js --ext=mjs --base=main -- eslint",
"prettier-check": "prettier -c \"**/*.{cjs,css,html,js,json,md,mjs,yaml,yml}\"",
"prettier-check:updated": "pipe-git-updated --ext=cjs --ext=css --ext=html --ext=js --ext=json --ext=md --ext=mjs --ext=yaml --ext=yml --base=main -- prettier -c",
"prettify": "prettier --write \"**/*.{cjs,css,html,js,json,md,mjs,yaml,yml}\"",
"prettify:updated": "pipe-git-updated --ext=cjs --ext=css --ext=html --ext=js --ext=json --ext=md --ext=mjs --ext=yaml --ext=yml --base=main -- prettier --write",
"test": "mocha --config test/mocha/unit.cjs --parallel \"test/unit/**/*.test.js\"",
"test:ci": "npm run prettier-check:updated && npm run lint:updated && npm run test:isolated",
"test:isolated": "mocha --config test/mocha/unit.cjs --parallel \"test/unit/**/*.test.js\""
},
"engines": {
"node": "^20.19.0 || ^22.13.0 || >=24"
},
"license": "MIT"
}