-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
78 lines (78 loc) · 3.25 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": "merloc-cli",
"version": "0.1.2",
"description": "MerLoc CLI tool to manage communication between MerLoc broker and local AWS Lambda runners",
"author": "Serkan Özal <serkan@thundra.io> (https://github.com/serkan-ozal)",
"homepage": "https://github.com/thundra-io/merloc-cli",
"repository": "thundra-io/merloc-cli",
"license": "Apache License 2",
"main": "./dist/index.js",
"bin": {
"merloc": "./dist/index.js"
},
"keywords": [
"serverless",
"aws",
"aws-lambda",
"debugging",
"hot-reload",
"merloc"
],
"scripts": {
"build": "tsc && cp -r helpers dist/",
"start": "ts-node -O \"{\\\"module\\\":\\\"commonjs\\\"}\" ./src/index.ts",
"test": "echo \"Error: no test specified\" && exit 1",
"lint-check": "prettier --config .prettierrc.json --check ./src/*.ts ./src/**/*.ts",
"lint-format": "prettier --config .prettierrc.json --write ./src/*.ts ./src/**/*.ts",
"release-patch": "release-it --ci --git.commit --git.push --git.tag --git.tagName='v${version}' --github.release --no-git.requireCleanWorkingDir --no-git.requireUpstream --npm.publish --npm.skipChecks",
"release-minor": "release-it minor --ci --git.commit --git.push --git.tag --git.tagName='v${version}' --github.release --no-git.requireCleanWorkingDir --no-git.requireUpstream --npm.publish --npm.skipChecks",
"release-major": "release-it major --ci --git.commit --git.push --git.tag --git.tagName='v${version}' --github.release --no-git.requireCleanWorkingDir --no-git.requireUpstream --npm.publish --npm.skipChecks",
"release-minor-without-tag": "release-it minor --ci --no-git.commit --no-git.push --no-git.tag --no-git.tagName='v${version}' --no-github.release --no-git.requireCleanWorkingDir --no-git.requireUpstream --npm.publish --npm.skipChecks"
},
"files": [
"dist/",
"package.json",
"README.md",
"CHANGELOG.md",
"LICENSE"
],
"devDependencies": {
"@types/async-lock": "^1.3.0",
"@types/aws-lambda": "^8.10.84",
"@types/cross-spawn": "^6.0.2",
"@types/dockerode": "^3.3.11",
"@types/node": "^14.11.8",
"@types/portscanner": "^2.1.1",
"@types/rwlock": "^5.0.3",
"@types/tmp": "^0.2.3",
"@types/uuid": "^8.3.4",
"@types/ws": "^8.5.3",
"@typescript-eslint/eslint-plugin": "^5.10.1",
"@typescript-eslint/parser": "^5.10.1",
"eslint": "^8.7.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^16.1.0",
"eslint-plugin-import": "^2.25.4",
"prettier": "^2.2.1",
"release-it": "^15.5.0",
"ts-node": "^10.9.1",
"typescript": "^4.8.4"
},
"dependencies": {
"@aws-sdk/credential-providers": "^3.202.0",
"async-lock": "^1.3.2",
"axios": "^0.27.2",
"body-parser": "^1.20.0",
"chalk": "^4.1.2",
"chokidar": "^3.5.3",
"commander": "^9.4.1",
"cross-spawn": "^7.0.3",
"dockerode": "^3.3.4",
"portscanner": "^2.2.0",
"rwlock": "^5.0.0",
"tmp": "^0.2.1",
"uuid": "^9.0.0",
"uuid-by-string": "^4.0.0",
"ws": "^8.9.0"
}
}