-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
76 lines (76 loc) · 2.16 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
{
"name": "@eik/cli",
"version": "3.1.12",
"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 60 --disable-coverage",
"test:integration": "cross-env HTTP_PORT=0 LOG_LEVEL=fatal tap --timeout 60 --disable-coverage test/integration/**/*.test.mjs",
"test:unit": "cross-env HTTP_PORT=0 LOG_LEVEL=fatal tap --timeout 60 --disable-coverage test/*.test.mjs",
"test:tasks": "cross-env HTTP_PORT=0 LOG_LEVEL=fatal tap --timeout 60 --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"
},
"keywords": [],
"author": "",
"license": "MIT",
"dependencies": {
"@eik/common": "4.1.1",
"abslog": "2.4.4",
"bytes": "3.1.2",
"chalk": "5.4.1",
"date-fns": "3.6.0",
"form-data": "4.0.1",
"gzip-size": "7.0.0",
"make-dir": "5.0.0",
"ora": "8.1.1",
"rimraf": "6.0.1",
"semver": "7.6.3",
"ssri": "10.0.6",
"tar": "7.4.3",
"yargs": "17.7.2",
"yargs-parser": "21.1.1"
},
"devDependencies": {
"@eik/eslint-config": "1.0.7",
"@eik/prettier-config": "1.0.1",
"@eik/semantic-release-config": "1.0.0",
"@eik/service": "2.3.2",
"@eik/sink-memory": "1.1.3",
"@eik/typescript-config": "1.0.0",
"@types/yargs": "17.0.33",
"cross-env": "7.0.3",
"eslint": "9.17.0",
"fastify": "4.29.0",
"fs-extra": "11.2.0",
"npm-run-all2": "5.0.2",
"prettier": "3.4.2",
"semantic-release": "24.0.0",
"semantic-release-slack-bot": "4.0.2",
"tap": "21.0.1",
"typescript": "5.5.4"
}
}