-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
29 lines (29 loc) · 966 Bytes
/
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
{
"name": "@hybridless/serverless-ecs-plugin",
"version": "0.0.53",
"description": "ECS bridge for serverless framework.",
"main": "index.js",
"homepage": "https://github.com/hybridless/serverless-ecs-plugin",
"scripts": {
"clean": "rm -rf ./*.js ./*.js.map ./bin/ ./.serverless/ ./resources/",
"generate-plugin-schema": "typescript-json-schema --required --noExtraProps src/options.ts '*' > options.json && node config/export-plugin-schema.js",
"build": "npm run clean && npm run generate-plugin-schema && tsc -p ./tsconfig.json",
"test": "echo \"Error: no test specified\" && exit 1"
},
"contributors": [
{
"name": "Gabriel Pacheco",
"email": "[email protected]"
}
],
"license": "MIT",
"devDependencies": {
"@types/jest": "^29.5.7",
"json-schema-ref-parser": "^9.0.9",
"typescript": "^5.2.2",
"typescript-json-schema": "^0.60.0"
},
"dependencies": {
"bluebird": "^3.7.2"
}
}