-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
71 lines (71 loc) · 1.76 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
{
"name": "konvenient",
"version": "3.1.0",
"description": " Decorator-driven configuration library for TypeScript, based on convict.",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"files": [
"dist"
],
"scripts": {
"clean": "rimraf ./dist ./coverage ./generated-docs ./junit.xml",
"compile": "tsc",
"compile:watch": "tsc --watch",
"docs": "typedoc --out generated-docs src",
"lint": "xo",
"lint:fix": "xo --fix",
"lint:staged": "lint-staged",
"prepare": "husky install",
"prepublishOnly": "npm run clean && npm run compile",
"test": "jest --coverage",
"test:watch": "jest --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dwmt/konvenient.git"
},
"homepage": "https://github.com/dwmt/konvenient",
"bugs": {
"url": "https://github.com/dwmt/konvenient/issues"
},
"keywords": [
"typescript",
"configuration",
"convict",
"inversify"
],
"author": "Attila Bagossy",
"license": "MIT",
"devDependencies": {
"@commitlint/cli": "12.1.4",
"@dwmt/branchlint": "1.3.0",
"@dwmt/commitlint-config-numbered-type": "1.0.0",
"@dwmt/commitlint-plugin-numbered-type": "1.0.0",
"@jest/globals": "27.0.6",
"@types/convict": "6.1.1",
"@types/jest": "26.0.23",
"@types/lodash.clonedeepwith": "4.5.6",
"@types/lodash.snakecase": "4.1.6",
"@types/node": "15.12.4",
"eslint-config-xo-typescript": "0.44.0",
"husky": "6.0.0",
"jest": "27.0.4",
"jest-junit": "13.0.0",
"lint-staged": "11.0.0",
"rimraf": "3.0.2",
"ts-jest": "27.0.3",
"ts-node": "10.0.0",
"typedoc": "0.21.0",
"typescript": "4.3.3",
"xo": "0.44.0"
},
"engines": {
"node": ">=14"
},
"dependencies": {
"convict": "6.1.0",
"lodash.clonedeepwith": "4.5.0",
"lodash.snakecase": "4.1.1",
"reflect-metadata": "0.1.13"
}
}