-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.17 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
{
"files": [
"src/**/*"
],
"main": "src/index.ts",
"dependencies": {
"@types/express": "^4.17.13"
},
"name": "express-http-decorators",
"description": "Decorator typescript for express controlers/router",
"version": "1.0.0",
"devDependencies": {
"@babel/core": "^7.16.5",
"@babel/plugin-proposal-decorators": "^7.16.7",
"@babel/preset-env": "^7.16.5",
"@babel/preset-typescript": "^7.16.5",
"@types/jest": "^27.4.0",
"babel-jest": "^27.4.5",
"express": "^4.17.2",
"jest": "^27.4.5",
"ts-node": "^10.4.0",
"ts-node-dev": "^1.1.8",
"typescript": "^4.5.4"
},
"scripts": {
"dev": "ts-node-dev example/src/index.ts",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ayelsew/express-decorator.git"
},
"keywords": [
"express",
"typescript",
"decorator",
"http",
"server"
],
"author": "ayelsew",
"license": "MIT",
"bugs": {
"url": "https://github.com/ayelsew/express-http-decorators/issues"
},
"homepage": "https://github.com/ayelsew/express-http-decorators#readme",
"directories": {
"example": "example",
"test": "tests"
}
}