-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
37 lines (37 loc) · 947 Bytes
/
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
{
"name": "@msabo1/expressts",
"version": "0.0.4-alpha",
"description": "Express TypeScript is decorator driven TypeScript framework on top of Express.js that allows you to use Express truly TypeScript way.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"prepublish": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/msabo1/expressts.git"
},
"keywords": [
"typescript",
"express",
"expressjs",
"expressts",
"express.js",
"di"
],
"author": "Mario Sabo",
"license": "MIT",
"bugs": {
"url": "https://github.com/msabo1/expressts/issues"
},
"homepage": "https://github.com/msabo1/expressts#readme",
"dependencies": {
"express": "^4.17.1",
"reflect-metadata": "^0.1.13"
},
"devDependencies": {
"@types/express": "^4.17.11",
"@types/node": "^14.14.37"
}
}