-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
69 lines (69 loc) · 1.88 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
{
"name": "fauda",
"version": "0.2.0",
"description": "Configuration made simple.",
"author": "Nicolas Gryman <[email protected]> (https://ngryman.sh)",
"license": "MIT",
"repository": "ngryman/fauda",
"main": "dist/fauda.js",
"module": "dist/fauda.modern.js",
"types": "dist/fauda.d.ts",
"bin": {
"fauda": "dist/cli.js"
},
"files": [
"dist/*"
],
"keywords": [
"configuration",
"config",
"settings",
"load",
"environment",
"env",
"file",
"cli"
],
"scripts": {
"build:cli": "microbundle cli.ts -o dist/cli.js -f cjs --target node",
"build:library": "microbundle index.ts -f modern,cjs --target node",
"build": "run-p build:*",
"postbuild": "mv dist/index.d.ts dist/fauda.d.ts && rm -rf dist/test",
"dev:cli": "microbundle watch cli.ts -o dist/cli.js -f cjs --target node --no-compress",
"dev:library": "microbundle watch index.ts -f modern --target node --no-compress",
"dev": "run-p dev:*",
"format": "prettier --check .",
"lint": "eslint {src,test}/**/*.ts",
"test": "jest"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"dependencies": {
"@endemolshinegroup/cosmiconfig-typescript-loader": "^3.0.2",
"ajv": "^6.12.6",
"cosmiconfig": "^7.0.0",
"getopts": "^2.2.5",
"json-schema-to-typescript": "^9.1.1",
"lodash": "^4.17.20"
},
"devDependencies": {
"@types/jest": "^26.0.15",
"@types/lodash": "^4.14.165",
"@types/node": "^14.14.6",
"@typescript-eslint/eslint-plugin": "^4.7.0",
"@typescript-eslint/parser": "^4.7.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.13.0",
"eslint-config-prettier": "^6.15.0",
"jest": "^26.6.3",
"microbundle": "^0.12.4",
"npm-run-all": "^4.1.5",
"prettier": "^2.1.2",
"ts-jest": "^26.4.3",
"type-fest": "^0.18.1",
"typescript": "^4.0.5"
}
}