forked from raml-org/ramldt2jsonschema
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.13 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
{
"name": "ramldt2jsonschema",
"version": "0.1.0",
"description": "Converts a RAML data type into JSON schema, and back",
"main": "src/index.js",
"author": "MuleSoft, Inc.",
"license": "Apache-2.0",
"homepage": "https://github.com/raml-org/ramldt2jsonschema",
"files": [
"src/**"
],
"keywords": [
"raml",
"json",
"types"
],
"repository": {
"type": "git",
"url": "git://github.com/raml-org/ramldt2jsonschema.git"
},
"bugs": {
"url": "https://github.com/raml-org/ramldt2jsonschema/issues"
},
"bin": {
"dt2js": "src/dt2js_cli.js",
"js2dt": "src/js2dt_cli.js"
},
"scripts": {
"lint": "standard",
"test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- -R spec --bail",
"test-spec": "mocha -R spec --bail",
"test": "npm run lint && npm run test-cov"
},
"dependencies": {
"commander": "^2.9.0",
"datatype-expansion": "^0.2.3",
"js-yaml": "^3.6.1"
},
"devDependencies": {
"ajv": "^4.7.6",
"chai": "^3.5.0",
"istanbul": "^0.4.5",
"mocha": "^3.1.0",
"rewire": "^2.5.2",
"standard": "^8.3.0",
"raml-1-parser": "^1.1.4"
}
}