-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.07 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.07 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
{
"name": "wj-config",
"version": "3.2.1",
"type": "module",
"description": "Javascript configuration module for NodeJS and browser frameworks such as React that works like ASP.net configuration where data sources are specified (usually JSON files) and environment variables can contribute/overwrite values by following a naming convention.",
"author": {
"email": "webJose@gmail.com",
"name": "José Pablo Ramírez Vargas"
},
"keywords": [
"config",
"wj",
"wj-config",
"nodejs",
"node-config",
"config-node",
"env",
"environment",
"json",
"json-config",
"react",
"react-config",
"config-react",
"microservice",
"mife",
"microfrontend"
],
"repository": {
"type": "git",
"url": "git+https://github.com/WJSoftware/wj-config.git"
},
"bugs": {
"url": "https://github.com/WJSoftware/wj-config/issues"
},
"license": "MIT-open-group",
"homepage": "https://github.com/WJSoftware/wj-config#readme",
"main": "./out/index.js",
"types": "./out/wj-config.d.ts",
"exports": {
".": {
"types": "./out/index.d.ts",
"import": "./out/index.js",
"default": "./out/index.js"
},
"./dist": {
"types": "./dist/index.d.ts",
"import": "./dist/index.min.js",
"default": "./dist/index.min.js"
}
},
"scripts": {
"build": "pwsh ./build-npm.ps1 && publint",
"build:debug": "pwsh ./build-npm.ps1 -Verbose && publint",
"test": "ts-mocha -n loader=ts-node/esm -p ./tsconfig.json \"./tests/**/*.test.ts\""
},
"engines": {
"node": ">=16.9.0"
},
"files": [
"out",
"dist/index.*"
],
"devDependencies": {
"@rollup/plugin-typescript": "^12.1.4",
"@types/chai": "^5.2.2",
"@types/mocha": "^10.0.10",
"@types/node": "^24.6.1",
"@types/sinon": "^17.0.4",
"chai": "^6.2.0",
"mocha": "^11.7.5",
"publint": "^0.3.9",
"rollup": "^4.52.3",
"rollup-plugin-esbuild-minify": "^1.3.0",
"sinon": "^21.0.0",
"ts-mocha": "^11.1.0",
"ts-node": "^10.9.2",
"tslib": "^2.8.1",
"typescript": "^5.9.3"
}
}