-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.11 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.11 KB
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
{
"name": "@epiijs/deploy",
"version": "0.4.2",
"description": "A toolkit for deploying any packages anywhere.",
"engines": {
"node": ">=20.0.0"
},
"type": "module",
"bin": {
"epii-deploy": "scripts/launch.js"
},
"main": "build/index.js",
"exports": "./build/index.js",
"scripts": {
"clean": "rm -rf build && rm -rf coverage",
"build": "npm run clean && eslint . && tsc",
"test": "echo test/tests.txt"
},
"repository": {
"type": "git",
"url": "git+https://github.com/epiijs/deploy.git"
},
"keywords": [
"epiijs",
"deploy",
"package",
"publish",
"install"
],
"author": "Sartrey Lee <sartrey@163.com> (https://sartrey.cn)",
"license": "MIT",
"bugs": {
"url": "https://github.com/epiijs/deploy/issues"
},
"homepage": "https://github.com/epiijs/deploy#readme",
"devDependencies": {
"@epiijs/eslint-config": "^1.0.2",
"@types/ali-oss": "^6.16.13",
"@types/node": "^20.11.16",
"eslint": "^9.20.1"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.940.0",
"ali-oss": "^6.23.0",
"glob": "^11.1.0",
"tar": "^7.5.2"
}
}