-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.97 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.97 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
81
82
{
"name": "dyflex-config",
"version": "1.3.3",
"description": "Simple, dynamic, flexible, configuration library.",
"author": "Frank Stock",
"license": "MIT",
"keywords": [
"config",
"configuration",
"dynamic",
"flexible",
"interpolate"
],
"homepage": "https://github.com/pcafstockf/dyflex-config#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/pcafstockf/dyflex-config.git"
},
"bugs": {
"url": "https://github.com/pcafstockf/dyflex-config/issues"
},
"main": "lib/cjs/index.js",
"module": "lib/esm/index.js",
"exports": {
".": {
"types": "./lib/index.d.ts",
"browser": "./lib/esm/browser-index.js",
"import": "./lib/esm/index.js",
"require": "./lib/cjs/index.js",
"default": "./lib/esm/index.js"
},
"./*": {
"types": "./lib/*.d.ts",
"import": "./lib/esm/*.js",
"require": "./lib/cjs/*.js"
}
},
"types": "lib/index.d.ts",
"typings": "lib/index.d.ts",
"directories": {
"lib": "lib"
},
"files": [
"lib"
],
"scripts": {
"clean": "rimraf ./lib && rimraf ./.nyc_output && rimraf ./coverage",
"fullclean": "npm run clean && rimraf ./package-lock.json && rimraf ./node_modules",
"test": "cross-env TS_NODE_PROJECT=tsconfig-test.json node --require ts-node/register node_modules/jasmine/bin/jasmine.js --config=jasmine.json",
"coverage": "rimraf coverage && rimraf ./nyc_output && nyc -e .ts -x \"**/*.spec.ts\" -x \"tst/*\" --reporter=text-summary --reporter=lcov npm run test",
"build": "npm run clean && tsc -p tsconfig.base.json && tsc -p tsconfig.esm.json && tsc-esm-fix --target=lib/esm && tsc -p tsconfig.cjs.json && npm run _postbuild",
"_postbuild": "echo '{\"type\": \"module\"}' >lib/esm/package.json && echo '{\"type\": \"commonjs\"}' >lib/cjs/package.json && node -e \"require('fs').writeFileSync('lib/esm/lodash-imports.js', 'export {default as lodashTemplate} from \\\"lodash-es/template.js\\\";\\nexport {default as lodashGet} from \\\"lodash-es/get.js\\\";\\nexport {default as lodashToPath} from \\\"lodash-es/toPath.js\\\";\\nexport {default as lodashMergeWith} from \\\"lodash-es/mergeWith.js\\\";\\nexport {default as lodashSet} from \\\"lodash-es/set.js\\\";\\nexport {default as lodashUnionWith} from \\\"lodash-es/unionWith.js\\\";\\nexport {default as lodashIsEqual} from \\\"lodash-es/isEqual.js\\\";\\n')\""
},
"dependencies": {
"json5": "~2.2.3",
"lodash": "~4.18.1",
"lodash-es": "~4.18.1"
},
"peerDependencies": {
"dotenv-expand": "~11.0.7",
"properties-reader": "~2.3.0",
"yaml": "~2.8.3"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "~1.0.2",
"@types/jasmine": "~6.0.0",
"@types/lodash": "~4.17.24",
"@types/node": "^20.19.37",
"@types/properties-reader": "~2.1.3",
"cross-env": "~10.1.0",
"jasmine": "~6.1.0",
"jasmine-console-reporter": "~3.1.0",
"nyc": "~18.0.0",
"rimraf": "~6.1.3",
"source-map-support": "~0.5.21",
"ts-node": "~10.9.2",
"tsc-esm-fix": "~3.1.2",
"tsconfig-paths": "~4.2.0",
"tslib": "~2.8.1",
"typescript": "~5.9.3"
}
}