-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
111 lines (111 loc) · 2.85 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "snap-push",
"version": "6.1.1",
"description": "Deliver static website files to Amazon S3, Azure or Google Cloud.",
"type": "module",
"main": "./dist-cjs/push.js",
"module": "./dist-esm/push.js",
"types": "./dist-types/push.d.ts",
"exports": {
".": {
"import": "./dist-esm/push.js",
"require": "./dist-cjs/push.js",
"default": "./dist-esm/push.js",
"types": "./dist-types/push.d.ts"
},
"./*": {
"import": "./dist-esm/*.js",
"require": "./dist-cjs/*.js",
"default": "./dist-esm/*.js",
"types": "./dist-types/*.d.ts"
}
},
"engines": {
"node": ">=20.16"
},
"bin": {
"snap-push": "dist-esm/cli.js"
},
"files": [
"dist-cjs",
"dist-esm",
"dist-types",
"README.md",
"CHANGELOG.md"
],
"scripts": {
"test": "yarn lint && yarn env-cmd --silent jest --detectOpenHandles --coverage",
"lint": "npx eslint src",
"build": "rimraf dist-esm dist-cjs dist-types && yarn tsc -b ./tsconfig.esm.json ./tsconfig.cjs.json ./tsconfig.types.json && chmod +x dist-esm/cli.js && echo '{\"type\": \"commonjs\"}' > ./dist-cjs/package.json",
"prepublish": "yarn build",
"cli": "yarn build && node dist-esm/cli.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/loune/snap-push.git"
},
"keywords": [
"push",
"snapshot",
"static",
"website",
"AWS",
"azure",
"gcp"
],
"author": "Loune Lam",
"license": "MIT",
"bugs": {
"url": "https://github.com/loune/snap-push/issues"
},
"homepage": "https://github.com/loune/snap-push#readme",
"peerDependencies": {
"@aws-sdk/client-s3": "^3.388.0",
"@aws-sdk/lib-storage": "^3.388.0",
"@azure/storage-blob": "^12.15.0",
"@google-cloud/storage": "^7.0.1"
},
"peerDependenciesMeta": {
"@azure/storage-blob": {
"optional": true
},
"@google-cloud/storage": {
"optional": true
},
"@aws-sdk/client-s3": {
"optional": true
},
"@aws-sdk/lib-storage": {
"optional": true
}
},
"devDependencies": {
"@aws-sdk/client-s3": "^3.388.0",
"@aws-sdk/lib-storage": "^3.388.0",
"@azure/storage-blob": "12.18.0",
"@eslint/js": "^9.6.0",
"@google-cloud/storage": "^7.0.1",
"@types/eslint__js": "^8.42.3",
"@types/jest": "^29.5.1",
"@types/node": "^20",
"azurite": "^3.31.0",
"env-cmd": "^10.1.0",
"eslint": "^9.6.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.7.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-prettier": "^5.1.2",
"globals": "^15.8.0",
"jest": "^29.5.0",
"prettier": "^3.4.2",
"rimraf": "^6.0.1",
"ts-jest": "^29.1.0",
"typescript": "^5.7.2",
"typescript-eslint": "^8.18.2"
},
"dependencies": {
"fast-glob": "^3.2.4",
"p-limit": "^3.0.2",
"yargs": "^17.2.1"
}
}