forked from binaris/concord
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.55 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
61
62
63
64
{
"name": "concord",
"version": "0.2.4",
"description": "transforms a Typescript interface into usable client / server code",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"lint": "tslint -p .",
"test": "ava --verbose --timeout 60s dist/test/**/test*.js",
"prepublishOnly": "rm -rf dist/ && npm run build"
},
"bin": {
"concord": "./bin/concord"
},
"repository": {
"type": "git",
"url": "git+https://github.com/binaris/concord.git"
},
"keywords": [
"json-schema",
"typescript",
"schema",
"methods",
"rpc"
],
"author": "bergundy",
"license": "MIT",
"bugs": {
"url": "https://github.com/binaris/concord/issues"
},
"homepage": "https://github.com/binaris/concord#readme",
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/glob": "^7.1.1",
"@types/lodash": "^4.14.132",
"@types/mustache": "^0.8.32",
"@types/mz": "0.0.32",
"@types/node": "^10.0.0",
"@types/puppeteer": "^1.12.4",
"@types/rmfr": "^2.0.0",
"@types/yargs": "^13.0.0",
"ajv": "^6.10.0",
"async-sema": "^3.0.0",
"ava": "^1.4.1",
"binaris": "^6.7.0",
"chai": "^4.2.0",
"puppeteer": "^1.17.0",
"tslint": "^5.16.0",
"webpack": "^4.32.2",
"webpack-cli": "^3.3.2",
"webpack-dev-server": "^3.4.1"
},
"dependencies": {
"glob": "^7.1.4",
"lodash": "^4.17.15",
"mustache": "^3.0.1",
"mz": "^2.7.0",
"npm": "^6.10.2",
"rmfr": "^2.0.0",
"typescript": "^3.5.3",
"typescript-json-schema": "^0.39.0",
"yargs": "^13.2.4"
}
}