-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
53 lines (53 loc) · 1.17 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
{
"author": {
"name": "Bojan D.",
"email": "dbojan@gmail.com"
},
"name": "json-schema-deref-sync",
"description": "Simple Node.js JSON Schema dereferencer",
"keywords": [
"json",
"schema",
"deref"
],
"version": "0.14.0",
"homepage": "https://github.com/cvent/json-schema-deref-sync",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/cvent/json-schema-deref-sync.git"
},
"bugs": {
"url": "http://github.com/cvent/json-schema-deref-sync/issues"
},
"engines": {
"node": ">=6.0.0"
},
"main": "lib/index.js",
"dependencies": {
"clone": "^2.1.2",
"dag-map": "~1.0.0",
"is-valid-path": "^0.1.1",
"lodash": "^4.17.13",
"md5": "~2.2.0",
"memory-cache": "~0.2.0",
"traverse": "~0.6.6",
"valid-url": "~1.0.9"
},
"devDependencies": {
"async": "^2.6.2",
"chai": "^4.2.0",
"fs.extra": "~1.3.2",
"js-yaml": "^3.13.1",
"jsdoc-to-markdown": "^4.0.0",
"mocha": "^6.1.4",
"standard": "~12.0.0"
},
"scripts": {
"test": "mocha",
"docs": "jsdoc2md \"lib/**/*.js\" --template readme.hbs > README.md"
},
"directories": {
"test": "test"
}
}