-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 2.28 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
78
{
"name": "dyflex-config",
"version": "1.1.1",
"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": {
".": {
"import": "./lib/esm/index.js",
"require": "./lib/cjs/index.js",
"types": "./lib/index.d.ts"
},
"./*": {
"import": "./lib/esm/*.js",
"require": "./lib/cjs/*.js",
"types": "./lib/*.d.ts"
}
},
"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": "TS_NODE_PROJECT=./tsconfig-test.json node --require ts-node/register --require tsconfig-paths/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 -p tsconfig.cjs.json && npm run _postbuild",
"_postbuild": "echo '{\"type\": \"module\"}' >lib/esm/package.json && echo '{\"type\": \"commonjs\"}' >lib/cjs/package.json"
},
"dependencies": {
"json5": "~2.2.3",
"lodash": "~4.17.21"
},
"peerDependencies": {
"dotenv-expand": "~11.0.6",
"properties-reader": "~2.3.0",
"yaml": "~2.4.2"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "~1.0.2",
"@types/jasmine": "~5.1.4",
"@types/lodash": "~4.17.7",
"@types/node": "~18.19.50",
"@types/properties-reader": "~2.1.3",
"cross-env": "~7.0.3",
"jasmine": "~5.1.0",
"jasmine-console-reporter": "~3.1.0",
"nyc": "~15.1.0",
"rimraf": "~5.0.10",
"source-map-support": "~0.5.21",
"ts-node": "~10.9.2",
"tsconfig-paths": "~4.2.0",
"tslib": "~2.6.3",
"typescript": "~5.4.5"
}
}