-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.12 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
{
"name": "@ts-common/schema-types",
"version": "0.0.5",
"description": "Compile-time transformation of JSON-Schema to TypeScript types",
"main": "dist/index.js",
"files": [
"dist/index.js",
"dist/index.d.ts",
"dist/index.js.map",
"dist/index.d.ts.map",
"src/index.ts"
],
"scripts": {
"tsc": "tsc",
"test": "tsc && nyc mocha ./dist/test.js",
"prepack": "npm install && tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ts-common/schema-types.git"
},
"keywords": [
"schema",
"typescript",
"json"
],
"author": "Sergey Shandar",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/ts-common/schema-types/issues"
},
"homepage": "https://github.com/ts-common/schema-types#readme",
"devDependencies": {
"@types/mocha": "^5.2.5",
"mocha": "^5.2.0",
"mocha-junit-reporter": "^1.18.0",
"nyc": "^13.1.0",
"typescript": "^3.2.2",
"@types/node": "^10.12.12"
},
"dependencies": {
"@ts-common/json": "^0.1.6",
"@ts-common/schema": "^0.0.5",
"@ts-common/tuple": "^0.0.5",
"tslib": "^1.9.3"
}
}