-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
92 lines (92 loc) · 2.13 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
85
86
87
88
89
90
91
92
{
"name": "tconf",
"version": "3.1.0",
"description": "Heirarchical configuration with environment variable coercion and type validation.",
"author": "Scott Sayles",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/codemariner/tconf"
},
"engines": {
"node": ">=12.0.0"
},
"config": {
"prettier": "**/*.{graphql,js,json,css,jsx,mjs,ts,tsx,yaml,yml}"
},
"scripts": {
"test": "jest --color --verbose --coverage",
"test:watch": "npm run test -- --watch",
"lint": "eslint . --ext .ts,.js",
"prettier": "prettier --write \"$npm_package_config_prettier\"",
"prettier:check": "prettier --list-different \"$npm_package_config_prettier\"",
"build": "tsc",
"build:test": "tsc --project test --noEmit",
"clean": "del-cli -f dist && del-cli -f coverage",
"prepublishOnly": "del-cli -f coverage"
},
"license": "ISC",
"devDependencies": {
"@types/bluebird": "^3.5.37",
"@types/debug": "4.1.7",
"@types/deepmerge": "2.2.0",
"@types/jest": "^29.4.0",
"@types/js-yaml": "4.0.0",
"@types/node": "^18.14.2",
"@typescript-eslint/eslint-plugin": "^5.38.0",
"@typescript-eslint/parser": "^5.38.0",
"del-cli": "4.0.1",
"eslint": "7.32.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-jest": "26.8.3",
"husky": "5.1.3",
"jest": "^29.4.3",
"lint-staged": "13.0.3",
"prettier": "2.7.1",
"prettier-eslint-cli": "5.0.1",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"typescript": "^4.9.3"
},
"dependencies": {
"bluebird": "^3.7.2",
"debug": "^4.3.1",
"deepmerge": "^4.2.2",
"js-yaml": "^4.1.0",
"json5": "^2.2.0",
"runtypes": "^6.7.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,js,json,yaml,yml}": [
"eslint --cache --fix",
"prettier --write",
"git add"
]
},
"files": [
"src/**/*",
"dist/**/*",
"package.json",
"README.md",
"DOC.md",
"CHANGELOG.md",
"LICENSE",
"tsconfig.json"
],
"keywords": [
"config",
"configuration",
"env",
"typescript",
"runtypes",
"12-factor"
]
}