-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 863 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 863 Bytes
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
{
"name": "json-dereference-cli",
"author": "David Kelley",
"description": "Provides a cli interface to the json-schema-ref-parser library",
"bin": {
"json-dereference": "./dereference.js"
},
"bugs": {
"url": "https://github.com/davikelley/json-dereference-cli/issues"
},
"homepage": "https://github.com/davikelley/json-dereference-cli",
"keywords": [
"json",
"schema",
"dereference",
"cli",
"tool"
],
"version": "0.1.2",
"main": "index.js",
"engines": {
"node": ">=4.3"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "https://github.com/davidkelley/json-dereference-cli"
},
"dependencies": {
"aws-sdk": "^2.80.0",
"json-schema-ref-parser": "^3.1.2",
"minimist": "^1.2.0",
"node-yaml": "^3.1.0"
}
}