-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
84 lines (84 loc) · 1.99 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
{
"name": "auto-config-js",
"version": "0.0.0",
"description": "Hierarchical NodeJS configuration with Yaml files, environment variables and config merging.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"/dist"
],
"repository": "otaciliolacerda/auto-config-js",
"homepage": "https://github.com/otaciliolacerda/auto-config-js#readme",
"keywords": [
"configuration",
"environment",
"config",
"yaml",
"auto-configuration"
],
"author": "otaciliolacerda",
"license": "MIT",
"bugs": {
"url": "https://github.com/otaciliolacerda/auto-config-js/issues"
},
"devDependencies": {
"@types/jest": "^27.4.1",
"@typescript-eslint/eslint-plugin": "^5.17.0",
"@typescript-eslint/parser": "^5.17.0",
"eslint": "^8.12.0",
"eslint-plugin-sonarjs": "^0.13.0",
"husky": "^7.0.4",
"jest": "^27.5.1",
"pinst": "^3.0.0",
"prettier": "^2.6.2",
"ts-jest": "^27.1.4",
"typescript": "^4.6.3"
},
"dependencies": {
"js-yaml": "^4.1.0"
},
"scripts": {
"build": "tsc",
"test": "jest",
"lint": "eslint --fix './lib/**/*.js' './test/**/*.js'",
"prettier": "prettier 'lib/**/*' 'test/**/*'",
"prettier:fix": "prettier --write 'lib/**/*' 'test/**/*'",
"release": "yarn publish",
"postinstall": "husky install",
"prepublishOnly": "yarn pinst --disable",
"postpublish": "yarn pinst --enable"
},
"release": {
"branches": [
"main"
]
},
"engines": {
"node": ">=12.9.0"
},
"jest": {
"preset": "ts-jest/presets/js-with-ts",
"testEnvironment": "node",
"globals": {
"ts-jest": {
"tsconfig": "<rootDir>/tsconfig.json"
}
},
"clearMocks": true,
"collectCoverage": true,
"collectCoverageFrom": [
"lib/**/*.js"
],
"coverageThreshold": {
"global": {
"branches": 90,
"functions": 90,
"lines": 90,
"statements": -15
}
}
},
"resolutions": {
"lodash": "^4.17.19"
}
}