-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
36 lines (36 loc) · 959 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
{
"name": "typescript-rest-rpc",
"description": "Auto generate client and server stubs for RESTful services based on TS source",
"version": "1.0.9",
"keywords": [],
"author": "Vasyl Stashuk <vasyl@stashuk.com>",
"license": "ISC",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"prepublish": "npm run build",
"build": "tsc",
"test": "mocha -r ts-node/register ./test/**/*.ts"
},
"dependencies": {
"command-line-args": "^5.0.2",
"command-line-usage": "^5.0.5",
"moment": "^2.22.1",
"ts-morph": "^1.0.0",
"write-yaml": "^1.0.0"
},
"devDependencies": {
"@types/chai": "^4.1.2",
"@types/koa": "^2.0.44",
"@types/koa-router": "^7.0.27",
"@types/node": "^9.4.6",
"chai": "^4.1.2",
"isomorphic-fetch": "^2.2.1",
"koa": "^2.5.0",
"koa-body": "^2.5.0",
"koa-router": "^7.4.0",
"mocha": "^5.0.5",
"ts-node": "^5.0.0",
"typescript": "^3.2.1"
}
}