-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
87 lines (87 loc) · 2.5 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
{
"name": "@mia-platform/cdn-publish",
"description": "A client for Mia's CDN storage API",
"version": "0.6.0",
"license": "SEE LICENSE IN LICENSE",
"author": {
"name": "Mia Platform Core Team",
"email": "[email protected]"
},
"contributors": [
{
"name": "Umberto Toniolo",
"email": "[email protected]"
},
{
"name": "Alberto Moretti",
"email": "[email protected]"
}
],
"type": "module",
"bin": {
"cdn": "./dist/index.cjs"
},
"files": [
"dist",
".docker",
"package.json"
],
"scripts": {
"lint": "eslint . --ext .js,.ts",
"test": "mocha \"tests/**/*.test.ts\"",
"test:unit": "mocha \"tests/unit/**/*.test.ts\"",
"test:integration": "mocha \"tests/integration/**/*.test.ts\"",
"check-types": "tsc --noEmit",
"coverage": "cross-env 'NODE_OPTIONS=--no-warnings --experimental-loader @istanbuljs/esm-loader-hook' nyc yarn test:unit",
"cli:run": "node --no-warnings --loader=ts-node/esm src/index.ts",
"build": "node --no-warnings --loader=ts-node/esm scripts/build.ts",
"bump": "node --no-warnings --loader=ts-node/esm scripts/version.ts"
},
"dependencies": {
"axios": "^1.5.1",
"basic-ftp": "^5.0.3",
"commander": "^11.0.0",
"glob": "^10.3.10",
"node-color-log": "^10.0.2",
"p-queue": "^7.4.1",
"semver-regex": "^4.0.5"
},
"devDependencies": {
"@istanbuljs/esm-loader-hook": "^0.2.0",
"@istanbuljs/nyc-config-typescript": "^1.0.2",
"@ts-type/package-dts": "^2.0.8",
"@types/chai": "^4.3.6",
"@types/chai-as-promised": "^7.1.6",
"@types/isomorphic-fetch": "^0.0.37",
"@types/mocha": "^10.0.2",
"@types/node": "^20.8.3",
"@types/p-queue": "^3.2.1",
"@types/sinon": "^10.0.19",
"@types/sinon-chai": "^3.2.10",
"@types/temp": "^0.9.2",
"@typescript-eslint/eslint-plugin": "^6.7.4",
"@typescript-eslint/parser": "^6.7.4",
"chai": "^4.3.10",
"chai-as-promised": "^7.1.1",
"cross-env": "^7.0.3",
"dotenv": "^16.3.1",
"esbuild": "^0.19.4",
"eslint": "^8.51.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-n": "^16.1.0",
"eslint-plugin-sort-keys-fix": "^1.1.2",
"eslint-plugin-typescript-sort-keys": "^3.0.0",
"mocha": "^10.2.0",
"nyc": "^15.1.0",
"sinon": "^16.1.0",
"sinon-chai": "^3.7.0",
"source-map-support": "^0.5.21",
"temp": "^0.9.4",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
},
"engines": {
"node": ">=16"
},
"packageManager": "[email protected]"
}