-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
41 lines (41 loc) · 1.26 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
{
"name": "config-dug",
"version": "2.0.0",
"description": "Config management library for Node.js with support for multiple environments, config files, environment variables and plugins",
"author": "Neo Financial Engineering <[email protected]>",
"license": "MIT",
"private": true,
"homepage": "https://github.com/neofinancial/config-dug",
"repository": {
"type": "git",
"url": "https://github.com/neofinancial/config-dug.git"
},
"engines": {
"node": ">=18.0.0",
"npm": ">=9.0.0"
},
"workspaces": [
"examples/*",
"packages/*"
],
"scripts": {
"build": "npm run build --workspace=config-dug --workspace=@config-dug/plugin-aws-secrets-manager",
"clean": "rimraf packages/*/build",
"clean:modules": "rimraf node_modules examples/*/node_modules packages/*/node_modules",
"format": "prettier --write \"**/*.{ts,js,cjs,mjs,json,md}\"",
"format:check": "prettier --debug-check \"**/*.{ts,js,cjs,mjs,json,md}\"",
"pre-commit": "lint-staged",
"prepare": "husky install"
},
"lint-staged": {
"*.{ts,js,cjs,mjs,json,md,yaml,yml}": [
"prettier --write"
]
},
"devDependencies": {
"husky": "^7.0.2",
"lint-staged": "^11.2.3",
"prettier": "^2.4.1",
"rimraf": "^3.0.2"
}
}