-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 971 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
38
{
"name": "express-ts-rest-generator",
"version": "1.0.9",
"description": "A library for automatic generating REST API endpoints from typescript class and typed client side classes for connecting to the same REST API.",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"lint": "tslint --fix -c tslint.json --project ./tsconfig.json",
"test": "mocha -r ts-node/register src/**/*.test.ts"
},
"keywords": [
"express",
"typescript",
"generator",
"API",
"REST",
"client",
"generation"
],
"author": "Samo Pajk",
"license": "MIT",
"dependencies": {
"express": "^4.17.1",
"reflect-metadata": "^0.1.13",
"tslib": "^1.10.0",
"tslint": "^5.20.0",
"typescript": "~3.2.2"
},
"devDependencies": {
"@types/chai": "^4.2.4",
"@types/mocha": "^5.2.7",
"@types/node": "^12.11.7",
"chai": "^4.2.0",
"mocha": "^6.2.2",
"ts-node": "^8.4.1"
}
}