-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
77 lines (77 loc) · 1.92 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
77
{
"name": "wj-config",
"version": "3.0.0-rc.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"
},
"./sources": {
"types": "./out/dataSources/index.d.ts",
"import": "./out/dataSources/index.js",
"default": "./out/dataSources/index.js"
},
"./dist": {
"types": "./dist/index.d.ts",
"browser": "./dist/index.min.js"
}
},
"scripts": {
"build": "rollup -c && pwsh ./build-npm.ps1 && publint",
"test": "mocha ./tests/**/*.test.js"
},
"engines": {
"node": ">=16.9.0"
},
"files": [
"out",
"dist"
],
"devDependencies": {
"@rollup/plugin-typescript": "^12.1.2",
"@types/chai": "^5.0.0",
"chai": "^5.1.2",
"mocha": "^11.1.0",
"publint": "^0.3.6",
"rollup": "^4.34.8",
"rollup-plugin-esbuild-minify": "^1.2.0",
"tslib": "^2.8.1",
"typescript": "^5.7.3"
}
}