-
Notifications
You must be signed in to change notification settings - Fork 46
/
package.json
47 lines (47 loc) · 1 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": "raml2obj",
"description": "RAML to object",
"version": "6.8.1",
"author": {
"name": "Kevin Renskers",
"email": "kevin@loopwerk.io"
},
"bugs": {
"url": "https://github.com/raml2html/raml2obj/issues"
},
"dependencies": {
"datatype-expansion": "^0.4.1",
"raml-1-parser": "^1.1.67"
},
"devDependencies": {
"eslint": "^6.8.0",
"eslint-plugin-prettier": "^3.1.4",
"glob": "^7.1.6",
"mocha": "^6.2.3",
"prettier": "^1.19.1"
},
"homepage": "https://github.com/raml2html/raml2obj",
"keywords": [
"RAML"
],
"license": "MIT",
"main": "index.js",
"repository": {
"type": "git",
"url": "git://github.com/raml2html/raml2obj.git"
},
"preferGlobal": false,
"scripts": {
"json": "node test/output-json.js",
"lint": "eslint . --fix",
"test": "mocha 'test/*.spec.js' --reporter progress"
},
"files": [
"index.js",
"arrays-objects-helpers.js",
"consistency-helpers.js"
],
"engines": {
"node": ">=4"
}
}