-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.8 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.8 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
{
"name": "@osls/compose",
"version": "1.3.0",
"description": "osls compose for deploying and orchestrating multiple services in monorepositories.",
"main": "src/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/oss-serverless/compose.git"
},
"bin": {
"osls-compose": "bin/serverless-compose",
"oslsc": "bin/serverless-compose"
},
"scripts": {
"lint": "eslint . bin/serverless-compose",
"lint:updated": "pipe-git-updated --ext=cjs --ext=js --ext=mjs --base=main -- eslint && pipe-git-updated --base=main bin -- eslint",
"prettier-check": "prettier -c \"**/*.{cjs,css,html,js,json,md,mjs,yaml,yml}\" && prettier -c --parser babel bin/serverless-compose",
"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 && pipe-git-updated --base=main bin -- prettier -c --parser=babel",
"prettify": "prettier --write \"**/*.{cjs,css,html,js,json,md,mjs,yaml,yml}\" && prettier --write --parser babel bin/serverless-compose",
"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 && pipe-git-updated --base=main bin -- prettier --write --parser=babel",
"test": "mocha --config test/mocha/unit.cjs"
},
"license": "MIT",
"dependencies": {
"@aws-sdk/client-cloudformation": "^3.1034.0",
"@aws-sdk/client-s3": "^3.1034.0",
"@aws-sdk/credential-providers": "^3.975.0",
"@smithy/node-http-handler": "^4.6.1",
"@dagrejs/graphlib": "^3.0.4",
"ajv": "^8.11.0",
"cli-cursor": "^5.0.0",
"cross-spawn": "^7.0.6",
"ext": "^1.7.0",
"fast-glob": "^3.3.3",
"https-proxy-agent": "^9.0.0",
"js-yaml": "^4.1.0",
"log": "^6.3.1",
"log-node": "^8.0.3",
"memoizee": "^0.4.15",
"minimist": "^1.2.6",
"semver": "^7.3.7",
"signal-exit": "^4.1.0",
"traverse": "^0.6.6",
"type": "^2.6.1",
"uni-global": "^1.0.0"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"aws-sdk-client-mock": "^4.1.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",
"mocha": "12.0.0-beta-9.2",
"prettier": "^3.8.3",
"proxyquire": "^2.1.3",
"sinon": "^21.1.2",
"sinon-chai": "^4.0.1"
},
"engines": {
"node": "^20.19.0 || ^22.13.0 || >=24"
},
"directories": {
"test": "test"
},
"keywords": [],
"author": "",
"type": "commonjs",
"bugs": {
"url": "https://github.com/oss-serverless/compose/issues"
},
"homepage": "https://github.com/oss-serverless/compose#readme"
}