-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 2.36 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 2.36 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
{
"name": "env-schema-cli",
"version": "0.9.5",
"description": "The enhanced CLI and a programmatic wrapper around env-schema environment variables validator against JSON Schema.",
"type": "module",
"main": "./code/index.js",
"module": "./code/index.js",
"types": "./types/index.d.ts",
"bin": {
"env-schema-cli": "./code/cli/cli.js"
},
"scripts": {
"test:foundation": "npm run check-types && vitest run --config tests/foundation/.ancillary/config/vitest.config.ts",
"check-types": "npx tsc --noEmit --project .",
"lint": "npx eslint ./src && npx eslint ./.usage",
"package:build": "tsx .delivery/scripts/build.ts",
"package:de-alias": "npx tsc-alias -p ./.delivery/configuration/tsconfig.json --verbose",
"package:bundle:copy": "cpy ./package.json ./LICENSE ./readme.md ./.delivery/.builds/dist",
"package:pack": "cd ./.delivery/.builds/dist && npm pack",
"package:test:usage": "cd .usage && npm run test:usage",
"package:lint:readme": "npx markdown-link-check --progress --quiet ./readme.md",
"package:publish": "npm publish ./.delivery/.builds/dist"
},
"keywords": [
"env",
"environment",
"json",
"schema",
"json-schema",
"ajv",
"dotenv",
"variables",
"validate"
],
"license": "MIT",
"author": "valentineshi.dev@gmail.com",
"homepage": "https://github.com/WhereJuly/65-env-schema-cli#readme",
"issues": "https://github.com/WhereJuly/65-env-schema-cli/issues",
"devDependencies": {
"@eslint/js": "^9.20.0",
"@tsconfig/node20": "^20.1.4",
"@types/node": "^22.13.2",
"@typescript-eslint/eslint-plugin": "^8.24.0",
"@typescript-eslint/parser": "^8.24.0",
"@vitest/coverage-v8": "^2.1.9",
"cpy-cli": "^5.0.0",
"eslint": "^9.20.1",
"markdown-link-check": "^3.13.6",
"mockttp": "^3.15.5",
"nock": "^14.0.1",
"rimraf": "^6.0.1",
"tsc-alias": "^1.8.10",
"tsx": "^4.19.2",
"typescript": "^5.7.3",
"typescript-eslint": "^8.24.0",
"vitest": "^2.1.9"
},
"dependencies": {
"chalk": "^5.4.1",
"commander": "^13.1.0",
"env-schema": "^6.0.1",
"openapi-types": "^12.1.3",
"types-package-json": "^2.0.39"
}
}