-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 943 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
30
31
32
{
"name": "small",
"version": "0.1.0",
"description": "",
"main": "dist/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "rm -r ./dist && tsc && echo \"#!/usr/bin/env node\n$(cat ./dist/cli/small.js)\" > ./dist/cli/small.js && chmod +x ./dist/cli/small.js && cp -r ./src/bin ./dist",
"small": "node ./dist/small.js"
},
"bin": "./dist/cli/small.js",
"author": "Kasper M. Sørensen <[email protected]>",
"license": "ISC",
"dependencies": {
"@aws-sdk/client-iam": "^3.427.0",
"@types/js-yaml": "^4.0.6",
"app-root-path": "^3.1.0",
"aws-cdk-lib": "^2.96.2",
"commander": "^11.0.0",
"constructs": "^10.3.0",
"esbuild": "^0.19.4",
"glob": "^10.3.4",
"js-yaml": "^4.1.0",
"ts-node": "^10.9.1",
"winston": "^3.11.0"
},
"devDependencies": {
"@types/node": "^20.3.3",
"prettier": "^3.0.3",
"typescript": "^5.1.6"
}
}