-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.24 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
{
"name": "snowclone-cli",
"version": "2.0.1",
"description": "CLI to start snowclone",
"main": "src/index.js",
"type": "module",
"bin": {
"snowclone": "bin/create-project"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js"
},
"keywords": [
"cli",
"snowclone"
],
"author": "",
"license": "ISC",
"dependencies": {
"@aws-sdk/client-dynamodb": "^3.538.0",
"@aws-sdk/client-ec2": "^3.542.0",
"@aws-sdk/client-s3": "^3.537.0",
"@aws-sdk/lib-dynamodb": "^3.538.0",
"@jest/globals": "^29.7.0",
"arg": "^5.0.2",
"aws-sdk": "^2.1582.0",
"chalk": "^5.3.0",
"commander": "^12.0.0",
"crypto": "^1.0.1",
"esm": "^3.2.25",
"fs": "^0.0.1-security",
"inquirer": "^9.2.16",
"listr": "^0.14.3",
"ncp": "^2.0.0",
"ora": "^8.0.1",
"os": "^0.1.2",
"path": "^0.12.7"
},
"devDependencies": {
"@babel/preset-env": "^7.24.4",
"jest": "^29.7.0"
},
"jest": {
"testEnvironment": "jest-environment-node",
"transform": {}
}
}