-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
109 lines (109 loc) · 3.13 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "@elite-libs/auto-config",
"description": "A Unified Config & Arguments Library for Node.js. Featuring support for environment variables, command line arguments, and JSON files!",
"version": "1.4.0",
"type": "commonjs",
"homepage": "https://github.com/elite-libs/auto-config",
"repository": {
"type": "git",
"url": "https://github.com/elite-libs/auto-config.git"
},
"source": "./src/index.ts",
"exports": "./dist/main.js",
"main": "./dist/main.js",
"module": "./dist/module.js",
"types": "./dist/index.d.ts",
"private": false,
"packageManager": "[email protected]",
"engineStrict": true,
"engines": {
"yarn": ">=1.10.0",
"node": ">=12.0.0"
},
"modern": "dist/modern.js",
"legacy": "dist/legacy.js",
"examples": "dist/examples/index.js",
"targets": {
"modern": {
"optimize": false,
"outputFormat": "esmodule",
"engines": {
"node": ">= 14"
}
},
"legacy": {
"optimize": false,
"outputFormat": "commonjs",
"engines": {
"browsers": "> 0.5%, last 2 versions, not dead"
}
},
"examples": {
"source": "examples/server-app/index.ts",
"optimize": false,
"outputFormat": "commonjs",
"engines": {
"browsers": "> 0.5%, last 2 versions, not dead"
}
}
},
"scripts": {
"app-test": "node app-test.js",
"prepublishOnly": "yarn run build",
"release:npm": "npm publish --access public --registry https://registry.npmjs.org/",
"release:github": "npm publish --access public --registry https://npm.pkg.github.com/",
"test": "yarn run build && jest",
"test:coverage": "yarn run build && jest --coverage",
"build": "npx rimraf ./dist/* && yarn run build:types && yarn run build:bundle",
"build:bundle": "parcel build ./src/index.ts",
"build:types": "tsc --downlevelIteration --isolatedModules false --declaration --declarationMap --noEmit false --module CommonJS --outDir dist/ts/"
},
"keywords": [
"config",
"nodejs",
"command-line",
"arguments",
"environment",
"variables"
],
"author": {
"name": "justsml",
"url": "https://danlevy.net"
},
"license": "BSD-3-Clause",
"devDependencies": {
"@babel/core": "^7.16.0",
"@babel/preset-env": "^7.16.4",
"@babel/preset-typescript": "^7.16.0",
"@parcel/packager-ts": "2.2.1",
"@parcel/transformer-typescript-tsc": "^2.2.1",
"@parcel/transformer-typescript-types": "^2.2.1",
"@types/debug": "^4.1.7",
"@types/jest": "^26.0.3",
"@types/lodash.isobject": "^3.0.6",
"@types/lodash.isstring": "^4.0.6",
"@types/lodash.keys": "^4.2.6",
"@types/lodash.mapvalues": "^4.6.7",
"@types/minimist": "^1.2.2",
"@types/node": "^16.11.12",
"jest": "^26.6.0",
"parcel": "2.2.1",
"ts-jest": "^26.5.0",
"ts-node": "^10.4.0",
"typescript": "^4.5.2"
},
"dependencies": {
"chalk": "^4.0.0",
"columnify": "1.5.4",
"debug": "^4.3.3",
"lodash.isobject": "^3.0.2",
"lodash.isstring": "^4.0.1",
"lodash.keys": "^4.2.0",
"lodash.mapvalues": "^4.6.0",
"minimist": "^1.2.5",
"zod": "^3.11.6"
},
"files": [
"dist"
]
}