-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.34 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 2.34 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
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
{
"name": "@eik/cli",
"version": "3.1.38",
"description": "CLI tool for publishing assets to an Eik server",
"main": "./classes/index.js",
"types": "./types/classes/index.d.ts",
"type": "module",
"bin": {
"eik": "index.js"
},
"files": [
"CHANGELOG.md",
"package.json",
"readme.md",
"index.js",
"commands",
"classes",
"utils",
"formatters",
"types"
],
"scripts": {
"clean": "rimraf .tap node_modules types",
"test": "cross-env HTTP_PORT=0 LOG_LEVEL=fatal tap --timeout 180 --jobs=1 --disable-coverage",
"test:integration": "cross-env HTTP_PORT=0 LOG_LEVEL=fatal tap --timeout 180 --jobs=1 --disable-coverage test/integration/**/*.test.mjs",
"test:unit": "cross-env HTTP_PORT=0 LOG_LEVEL=fatal tap --timeout 180 --jobs=1 --disable-coverage test/*.test.mjs",
"test:tasks": "cross-env HTTP_PORT=0 LOG_LEVEL=fatal tap --timeout 180 --jobs=1 --disable-coverage test/tasks/*.test.mjs",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"format:check": "prettier -c .",
"format:fix": "prettier -w .",
"fix": "run-s lint:fix format:fix",
"types": "run-s types:module types:test",
"types:module": "tsc",
"types:test": "tsc --project tsconfig.test.json"
},
"repository": {
"type": "git",
"url": "git@github.com:eik-lib/cli.git"
},
"keywords": [],
"author": "",
"license": "MIT",
"dependencies": {
"@eik/common": "5.1.22",
"abslog": "2.4.4",
"bytes": "3.1.2",
"date-fns": "4.1.0",
"form-data": "4.0.5",
"gzip-size": "7.0.0",
"ora": "9.3.0",
"rimraf": "6.1.3",
"semver": "7.7.4",
"tar": "7.5.8",
"tinyrainbow": "3.0.3",
"yargs": "18.0.0",
"yargs-parser": "22.0.0"
},
"overrides": {
"semantic-release-slack-bot": {
"micromatch": "4.0.8"
}
},
"devDependencies": {
"@eik/eslint-config": "1.0.25",
"@eik/prettier-config": "1.0.1",
"@eik/semantic-release-config": "1.0.12",
"@eik/service": "5.1.20",
"@eik/sink-memory": "2.0.16",
"@eik/typescript-config": "1.0.0",
"@types/yargs": "17.0.35",
"cross-env": "10.1.0",
"eslint": "9.39.2",
"fastify": "5.7.4",
"fs-extra": "11.3.3",
"npm-run-all2": "8.0.4",
"prettier": "3.8.1",
"semantic-release": "25.0.3",
"semantic-release-slack-bot": "4.0.2",
"tap": "21.5.0",
"typescript": "5.9.3"
}
}