-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.63 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
{
"name": "@jsheaven/read-config-file",
"version": "1.0.1",
"type": "module",
"publishConfig": {
"access": "public"
},
"bin": {
"create-from-git": "./dist/cli.esm.js"
},
"license": "MIT",
"description": "Tiny library to read config files like your.config.js, your.config.mjs your.config.ts, your.conifg.json and your.config.json5 from disk.",
"keywords": [
"config",
"read",
"API",
"CLI"
],
"repository": {
"url": "git+https://github.com/jsheaven/read-config-file.git",
"type": "git"
},
"scripts": {
"pretest": "yarn build --dev",
"test": "NODE_OPTIONS='--experimental-vm-modules --enable-source-maps --no-warnings' jest --verbose --coverage ./test/*.test.ts",
"clean": "rm -rf ./dist && rm -rf ./coverage",
"prebuild": "yarn clean",
"build": "yarn node --enable-source-maps ./build.mjs",
"precli": "yarn build",
"cli": "yarn node --experimental-vm-modules --enable-source-maps ./dist/cli.esm.js readConfigFile"
},
"author": "Aron Homberg <[email protected]>",
"sideEffects": false,
"exports": {
".": {
"require": "./dist/index.cjs.js",
"import": "./dist/index.esm.js"
}
},
"module": "./dist/index.esm.js",
"main": "./dist/index.cjs.js",
"types": "./dist/index.esm.d.ts",
"files": [
"dist"
],
"devDependencies": {
"@jsheaven/easybuild": "^1.1.4",
"@types/jest": "^29.4.0",
"@types/node": "^18.11.19",
"jest": "^29.4.1",
"ts-jest": "^29.0.0-next.1",
"typescript": "^4.9.5"
},
"dependencies": {
"esbuild": "^0.17.6",
"json5": "^2.2.3",
"kleur": "^4.1.5",
"yargs-parser": "^21.1.1"
}
}