-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
42 lines (42 loc) · 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
{
"name": "simple-ts-express-decorators",
"version": "1.3.0",
"description": "Simple express decorators for typescript",
"repository": {
"url": "https://github.com/arnidan/simple-ts-express-decorators"
},
"main": "dist/index.js",
"typings": "types/index.d.ts",
"scripts": {
"build": "tsc",
"lint": "eslint src/ --ext .js,.ts",
"test": "jest",
"test-coverage": "jest --coverage --coverageReporters=lcov"
},
"keywords": [
"express",
"expressjs",
"typescript",
"ts",
"decorators",
"controller"
],
"author": "Andrew",
"license": "MIT",
"dependencies": {
"glob": "^8.0.3",
"reflect-metadata": "^0.1.13"
},
"devDependencies": {
"@types/express": "4.17.8",
"@types/jest": "^29.2.4",
"@types/node": "^18.11.13",
"@typescript-eslint/eslint-plugin": "^5.46.0",
"@typescript-eslint/parser": "^5.46.0",
"coveralls": "^3.1.1",
"eslint": "^8.29.0",
"jest": "^29.3.1",
"ts-jest": "^29.0.3",
"typescript": "^4.9.4"
}
}