forked from gcanti/tcomb-json-schema
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.76 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
{
"name": "@rhumbix/tcomb-json-schema",
"version": "1.0.11",
"description": "Transform a JSON schema to a tcomb form",
"main": "dist/index.js",
"files": [
"dist"
],
"scripts": {
"build": "rollup -c",
"dev": "rollup -c -w",
"lint": "eslint index.js",
"test": "./node_modules/.bin/mocha --compilers js:@babel/register",
"testw": "./node_modules/.bin/mocha --compilers js:@babel/register --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Rhumbix/tcomb-json-schema.git"
},
"dependencies": {
"@babel/register": "^7.7.7",
"fcomb": "0.1.0",
"jsonpointer": "5.0.1",
"lodash": "4.17.21",
"tcomb": "3.0.0"
},
"devDependencies": {
"@babel/core": "7.5.5",
"@babel/plugin-proposal-async-generator-functions": "7.2.0",
"@babel/plugin-proposal-class-properties": "7.5.5",
"@babel/plugin-proposal-decorators": "7.4.4",
"@babel/plugin-proposal-object-rest-spread": "7.5.5",
"@babel/plugin-syntax-dynamic-import": "7.2.0",
"@babel/plugin-transform-modules-commonjs": "7.5.0",
"@babel/preset-env": "7.5.5",
"@babel/preset-react": "7.0.0",
"@babel/preset-typescript": "7.3.3",
"assert-diff": "2.0.3",
"babel-plugin-dynamic-import-node": "2.3.0",
"babel-plugin-lodash": "3.3.4",
"eslint": "8.23.1",
"mocha": "2.4.5",
"nodemon": "1.19.1",
"rollup": "1.23.1",
"rollup-plugin-babel": "4.3.3",
"rollup-plugin-node-resolve": "5.2.0"
},
"tags": [
"tcomb",
"JSON Schema"
],
"keywords": [
"tcomb",
"JSON Schema"
],
"author": "Rhumbix <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Rhumbix/tcomb-json-schema/issues"
},
"homepage": "https://github.com/Rhumbix/tcomb-json-schema#readme"
}