-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.88 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 1.88 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
{
"name": "celeris-cli",
"version": "1.0.0",
"description": "Celeris delivers real-time visibility into build pipelines, CI/CD health, and key development metrics — built for speed, designed for devs.",
"contributors": [
"nokarin-dev <nokarin@strivo.xyz>"
],
"repository": {
"type": "git",
"url": "git+https://github.com/SITCommunity/celeris-cli.git"
},
"keywords": [
"celeris",
"cli",
"development"
],
"author": "nokarin-dev",
"license": "MIT",
"bugs": {
"url": "https://github.com/SITCommunity/celeris-cli/issues"
},
"homepage": "https://github.com/SITCommunity/celeris-cli#readme",
"main": "./src/index.js",
"scripts": {
"test": "pnpm run test:typescript && pnpm run test:jest",
"test:ci": "pnpm run test:typescript",
"test:typescript": "tsc --noEmit && tsd",
"test:jest": "jest --coverage",
"update": "pnpm --recursive update --interactive",
"update:latest": "pnpm --recursive update --interactive --latest",
"changelog": "git cliff --prepend ./CHANGELOG.md -u -c ./cliff.toml"
},
"exports": {
".": {
"import": {
"default": "./src/index.js"
},
"require": {
"default": "./src/index.js"
}
},
"./bin/celeris": "./bin/celeris.js"
},
"directories": {
"lib": "src",
"test": "test"
},
"files": [
"src"
],
"bin": {
"celeris": "./bin/celeris.js"
},
"engines": {
"node": ">=18"
},
"dependencies": {
"axios": "^1.8.4",
"commander": "^13.1.0",
"tslib": "^2.8.1"
},
"devDependencies": {
"jest": "^29.7.0",
"prettier": "^3.5.3",
"tsd": "^0.32.0",
"turbo": "^2.5.0",
"typescript": "^5.8.3"
},
"publishConfig": {
"provenance": true
},
"packageManager": "pnpm@10.9.0+sha512.0486e394640d3c1fb3c9d43d49cf92879ff74f8516959c235308f5a8f62e2e19528a65cdc2a3058f587cde71eba3d5b56327c8c33a97e4c4051ca48a10ca2d5f"
}