-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.02 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 2.02 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
{
"name": "@ekino/config",
"version": "0.7.1",
"description": "lightweight configuration module powered by yaml",
"homepage": "https://github.com/ekino/node-config",
"files": [
"lib"
],
"type": "module",
"main": "./lib/esm/index.js",
"types": "lib/esm/index.d.ts",
"exports": {
".": {
"import": {
"types": "./lib/esm/index.d.ts",
"default": "./lib/esm/index.js"
},
"require": {
"types": "./lib/cjs/index.d.ts",
"default": "./lib/cjs/index.js"
}
}
},
"repository": {
"type": "git",
"url": "https://github.com/ekino/node-config.git"
},
"maintainers": [
{
"name": "Raphaël Benitte"
},
{
"name": "Nadim El-Boustani"
}
],
"author": "ekino OSS <oss@ekino.com>",
"license": "MIT",
"tags": [
"config",
"yaml",
"lightweight",
"env",
"variables environment"
],
"dependencies": {
"js-yaml": "5.x"
},
"devDependencies": {
"@biomejs/biome": "2.5.1",
"@types/node": "26.0.1",
"@vitest/coverage-v8": "4.1.9",
"commitlint": "21.1.0",
"typescript": "6.0.3",
"vitest": "4.1.9"
},
"scripts": {
"build": "pnpm run build:esm && pnpm run build:cjs",
"build:esm": "tsc -p tsconfig.lib.json --outDir lib/esm",
"build:cjs": "tsc -p tsconfig.lib.json --module CommonJS --moduleResolution Bundler --outDir lib/cjs",
"postbuild:cjs": "echo '{\"type\": \"commonjs\"}' > lib/cjs/package.json",
"test": "vitest --run",
"coverage": "vitest run --coverage",
"check-typing": "tsc -p tsconfig.json --noEmit",
"changelog": "git cliff --latest",
"version": "echo ${npm_package_version}",
"lint": "biome check --write",
"check": "biome check",
"hook": "git config core.hooksPath ./.githooks || true"
}
}