-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 755 Bytes
/
Copy pathpackage.json
File metadata and controls
29 lines (29 loc) · 755 Bytes
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
{
"name": "json-schema-type-mapper",
"version": "0.0.2",
"description": "Type-level conversion of JSON Schema into Typescript types",
"types": "index.d.ts",
"repository": "git@github.com:epiphone/json-schema-type-mapper.git",
"author": "Aleksi Pekkala <aleksipekkala@gmail.com>",
"license": "MIT",
"scripts": {
"build": "tsc -p tsconfig.json",
"lint": "tslint --project .",
"test": "tsd"
},
"prettier": {
"semi": false,
"singleQuote": true
},
"devDependencies": {
"prettier": "^1.19.1",
"tsd": "^0.11.0",
"tslint": "^5.20.1",
"tslint-config-prettier": "^1.18.0",
"tslint-config-standard": "^9.0.0",
"typescript": "^3.7.2"
},
"dependencies": {
"json-schema-typed": "^7.0.2"
}
}