-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
60 lines (60 loc) · 1.49 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
51
52
53
54
55
56
57
58
59
60
{
"name": "launch",
"version": "0.0.1",
"description": "transforms a Typescript interface into usable client / server code",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"test": "ava --verbose --timeout 60s dist/test/**/test*.js"
},
"bin": {
"launch": "./bin/launch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bergundy/tjs-methods.git"
},
"keywords": [
"typescript-json-schema",
"tjs",
"schema",
"methods"
],
"author": "bergundy",
"license": "ISC",
"bugs": {
"url": "https://github.com/bergundy/tjs-methods/issues"
},
"homepage": "https://github.com/bergundy/tjs-methods#readme",
"devDependencies": {
"@types/ajv": "^1.0.0",
"@types/chai": "^4.1.3",
"@types/chai-as-promised": "^7.1.0",
"@types/glob": "^7.1.1",
"@types/koa-bodyparser": "^4.2.1",
"@types/koa-router": "7.0.35",
"@types/lodash": "^4.14.118",
"@types/mustache": "^0.8.30",
"@types/mz": "0.0.32",
"@types/node": "^10.12.6",
"@types/rmfr": "^2.0.0",
"@types/yargs": "^11.0.0",
"ajv": "^6.5.5",
"ava": "^1.0.0-rc.2",
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"koa-bodyparser": "^4.2.1",
"koa-router": "^7.4.0"
},
"dependencies": {
"glob": "^7.1.3",
"lodash": "^4.17.11",
"mustache": "^2.3.0",
"mz": "^2.7.0",
"rmfr": "^2.0.0",
"toposort": "^2.0.2",
"typescript": "^3.2.2",
"typescript-json-schema": "^0.33.0",
"yargs": "^11.0.0"
}
}