-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.7 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
{
"name": "compcon",
"version": "0.0.1",
"description": "Composable configuration library",
"scripts": {
"lint": "eslint --ext .ts",
"build": "rm -rf dist/* && cd ./src && tsc",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/simenko/compcon.git"
},
"keywords": [
"configuration",
"config"
],
"author": "Illia Simenko",
"license": "MIT",
"bugs": {
"url": "https://github.com/simenko/compcon/issues"
},
"private": false,
"homepage": "https://github.com/simenko/compcon#readme",
"devDependencies": {
"@babel/core": "^7.12.16",
"@babel/plugin-proposal-class-properties": "^7.12.13",
"@babel/plugin-proposal-decorators": "^7.12.13",
"@babel/preset-env": "^7.12.16",
"@babel/preset-typescript": "^7.12.16",
"@types/flat": "^5.0.1",
"@types/jest": "^26.0.20",
"@types/lodash": "^4.14.168",
"@types/minimist": "^1.2.1",
"@types/node": "^14.14.27",
"@typescript-eslint/eslint-plugin": "^4.15.0",
"@typescript-eslint/parser": "^4.15.0",
"babel-jest": "^26.6.3",
"class-transformer": "^0.3.2",
"class-validator": "^0.13.1",
"eslint": "^7.20.0",
"eslint-config-prettier": "^7.2.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.1.3",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "3.3.0",
"eslint-plugin-promise": "^4.3.1",
"husky": "^5.0.9",
"jest": "^26.6.3",
"prettier": "2.2.1",
"reflect-metadata": "^0.1.13",
"typescript": "^4.1.5"
},
"peerDependencies": {
"node-vault-client": "^0.5.6"
},
"dependencies": {
"flat": "^5.0.2",
"lodash": "^4.17.20"
}
}