-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.64 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
{
"name": "config-decorator",
"private": false,
"version": "2.0.2",
"description": "PoC",
"main": "dist/config.decorator.js",
"types": "dist/config.decorator.d.ts",
"scripts": {
"lint": "eslint **/*.ts",
"lint:fix": "eslint --fix **/*.ts",
"check:type": "tsc --noEmit",
"test": "jest --passWithNoTests",
"test:cov": "jest --ci --coverage --reporters=default --reporters=jest-junit",
"test:e2e": "jest --config ./e2e-test/jest.config.js --forceExit --passWithNoTests --coverage --reporters=jest-junit",
"build": "rm -rf dist && tsc",
"prepare": "husky install"
},
"author": "Petr Grishin",
"license": "MIT",
"engineStrict": true,
"engines": {
"node": ">=16.14.2",
"npm": ">=8.5.0"
},
"devDependencies": {
"@commitlint/cli": "^17.7.1",
"@commitlint/config-conventional": "^13.2.0",
"@semantic-release/commit-analyzer": "^9.0.1",
"@semantic-release/release-notes-generator": "^10.0.2",
"@types/jest": "^27.0.2",
"@types/lodash.snakecase": "^4.1.9",
"@types/node": "^17.0.30",
"@typescript-eslint/eslint-plugin": "^5.1.0",
"@typescript-eslint/parser": "^5.1.0",
"eslint": "^8.0.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-unicorn": "^37.0.1",
"husky": "^7.0.2",
"jest": "^27.3.1",
"jest-junit": "^13.0.0",
"prettier": "^2.4.1",
"semantic-release": "^24.0.0",
"ts-jest": "^27.0.7",
"ts-node": "^10.3.0",
"typescript": "^4.4.4"
},
"dependencies": {
"env-schema": "^4.0.0",
"json-schema-to-ts": "^2.2.0",
"lodash.snakecase": "^4.1.1",
"reflect-metadata": "^0.1.13"
}
}