forked from gcanti/tcomb-json-schema
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 1016 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": "tcomb-json-schema",
"version": "0.3.2",
"description": "Transforms a JSON Schema to a tcomb type",
"main": "index.js",
"files": ["index.js", "util.js"],
"scripts": {
"lint": "eslint index.js",
"test": "npm run prettier && npm run lint && mocha",
"prettier":
"prettier --single-quote --print-width 81 --write index.js util.js"
},
"repository": {
"type": "git",
"url": "https://github.com/gcanti/tcomb-json-schema.git"
},
"author": "Giulio Canti <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/gcanti/tcomb-json-schema/issues"
},
"homepage": "https://github.com/gcanti/tcomb-json-schema",
"dependencies": {
"fcomb": "^0.1.0",
"tcomb": "^3.0.0"
},
"devDependencies": {
"eslint": "^4.7.2",
"eslint-config-prettier": "^2.6.0",
"eslint-plugin-prettier": "^2.3.1",
"mocha": "2.4.5",
"prettier": "^1.7.0"
},
"tags": ["tcomb", "JSON Schema"],
"keywords": ["tcomb", "JSON Schema"]
}