-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
42 lines (42 loc) · 1.17 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
{
"name": "scribd-amazon-appmesh-virtual-service-action",
"version": "0.0.1",
"description": "Creates an Amazon App Mesh Virtual Service.",
"main": "index.js",
"scripts": {
"preinstall": "npx only-allow pnpm",
"lint": "eslint **.js --fix",
"package": "ncc build index.js -o dist",
"test": "eslint **.js --fix && jest --config .jest.config.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/scribd/amazon-appmesh-virtual-service-action.git"
},
"keywords": [
"AWS",
"GitHub",
"Actions",
"JavaScript"
],
"author": "Scribd",
"license": "MIT",
"bugs": {
"url": "https://github.com/scribd/amazon-appmesh-virtual-service-action/issues"
},
"homepage": "https://github.com/scribd/amazon-appmesh-virtual-service-action#readme",
"dependencies": {
"@actions/core": "^1.10.0",
"@aws-sdk/client-app-mesh": "^3.301.0",
"@aws-sdk/util-waiter": "^3.296.0",
"lodash": "^4.17.21",
"yaml": "^2.2.1"
},
"devDependencies": {
"@vercel/ncc": "0.34.0",
"eslint": "^8.37.0",
"eslint-config-google": "^0.14.0",
"eslint-plugin-no-floating-promise": "^1.0.2",
"jest": "^28.1.3"
}
}