-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
85 lines (85 loc) · 2.1 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
{
"name": "graublau",
"description": "An object-oriented, loosely-coupled, typescript framework for creating REST applications.",
"repository": "https://github.com/thornberger/graublau.git",
"author": "Tobias Hornberger <[email protected]>",
"version": "0.3.12",
"license": "MIT",
"keywords": [
"rest",
"framework",
"typescript",
"express",
"nodejs",
"inversify"
],
"files": [
"/dist"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"test": "jest",
"coverage": "jest --coverage --collectCoverageFrom='src/**/*.ts' --colors --no-cache",
"lint": "tslint -c tslint.json 'src/**/*.ts'",
"release": "yarn test && yarn build && standard-version && yarn publish && conventional-github-releaser -p angular"
},
"dependencies": {
"body-parser": "^1.19.0",
"compression": "^1.7.2",
"express": "^4.17.1",
"helmet": "^4.2.0",
"inversify": "^5.0.1",
"inversify-binding-decorators": "^4.0.0",
"moment": "^2.24.0",
"reflect-metadata": "^0.1.13",
"winston": "^3.2.1"
},
"devDependencies": {
"@types/compression": "^1.7.0",
"@types/express": "^4.17.0",
"@types/helmet": "4.0.0",
"@types/jest": "^26.0.19",
"@types/node": "^14.14.14",
"codecov": "^3.5.0",
"conventional-github-releaser": "^3.1.3",
"husky": "^4.3.6",
"jest": "^26.6.3",
"nodemon": "^2.0.6",
"npm-run-all": "^4.1.5",
"standard-version": "^9.0.0",
"ts-jest": "^26.4.4",
"tslint": "^6.1.3",
"tslint-eslint-rules": "^5.4.0",
"typescript": "^4.1.3"
},
"jest": {
"preset": "ts-jest",
"roots": [
"<rootDir>"
],
"transform": {
"^.+\\.ts$": "ts-jest"
},
"testEnvironment": "node",
"testRegex": "/test/.*\\.test\\.ts$",
"moduleFileExtensions": [
"ts",
"js"
],
"coverageThreshold": {
"./src/**/*.ts": {
"branches": 100,
"functions": 100,
"lines": 100,
"statements": 100
}
}
},
"husky": {
"hooks": {
"pre-commit": "yarn coverage && yarn lint"
}
}
}