forked from AckeeCZ/configuru
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.78 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
{
"name": "configuru",
"description": "Manage the configuration of your Nodejs application with multiple environments and custom preferences, utilizing Configuru in CI and development as well!",
"version": "0.6.0",
"author": "Jaroslav Šmolík <[email protected]>",
"contributors": [
"Jaroslav Šmolík <[email protected]>"
],
"main": "./dist/index.js",
"repository": {
"type": "git",
"url": "https://github.com/AckeeCZ/configuru"
},
"license": "MIT",
"keywords": [
"configuration",
"env",
"variable",
"preferences",
"environment",
"dot-env",
"process-env",
"config",
"setup",
"loader",
"builder",
"backend",
"nodejs",
"node",
"parser"
],
"scripts": {
"build": "tsc",
"test": "jest",
"test:coverage": "npm run test -- --collectCoverage",
"test:codecov": "codecov",
"cs:eslint:check": "eslint --ignore-path .gitignore '**/*.ts' -f codeframe",
"cs:eslint:fix": "npm run cs:eslint:check -- --fix",
"cs:prettier:check": "prettier --ignore-path .gitignore --check '**/*.{ts,js,json,md}'",
"cs:prettier:fix": "npm run cs:prettier:check -- --write '**/*.{ts,js,json,md}'",
"prepare": "npm run build",
"docs": "typedoc --options typedoc.json src/lib/*.ts",
"check": "npm-check -i app -i errors -i config -i index & exit 0"
},
"dependencies": {
"jsonc-parser": "^2.3.1"
},
"devDependencies": {
"@ackee/styleguide-backend-config": "^0.2.1",
"@types/jest": "^26.0.14",
"@types/node": "^14.11.2",
"codecov": "^3.7.2",
"husky": "^4.3.0",
"intspector": "^1.0.1",
"jest": "^26.4.2",
"lint-staged": "^10.4.0",
"npm-check": "^5.9.2",
"prettier": "^2.1.2",
"ts-jest": "^26.4.1",
"typedoc": "^0.19.2",
"typescript": "^4.0.3"
}
}