-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathpackage.json
70 lines (70 loc) · 1.44 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
63
64
65
66
67
68
69
70
{
"author": {
"name": "Bojan D.",
"email": "[email protected]"
},
"name": "json-schema-deref",
"description": "Simple Node.js JSON Schema dereferencer",
"keywords": [
"json",
"schema",
"deref"
],
"version": "0.5.0",
"homepage": "https://github.com/bojand/json-schema-deref",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/bojand/json-schema-deref.git"
},
"bugs": {
"url": "http://github.com/bojand/json-schema-deref/issues"
},
"engines": {
"node": ">= 6.0.0"
},
"main": "lib/index.js",
"typings": "index.d.ts",
"dependencies": {
"async": "^2.6.1",
"clone": "^2.1.2",
"dag-map": "~1.0.0",
"is-valid-path": "^0.1.1",
"lodash": "^4.17.11",
"md5": "~2.2.0",
"memory-cache": "~0.2.0",
"mpath": "~0.5.0",
"request": "^2.88.0",
"traverse": "~0.6.6",
"traverse-async": "~0.1.6",
"valid-url": "~1.0.9"
},
"devDependencies": {
"ava": "~0.25.0",
"fs.extra": "~1.3.2",
"jsdoc-to-markdown": "^4.0.0",
"nyc": "^13.0.0",
"standard": "^12.0.0",
"validator": "^10.8.0"
},
"scripts": {
"test": "ava -v -s",
"cover": "nyc ava",
"docs": "jsdoc2md \"lib/**/*.js\" --heading-depth 3 --template readme.hbs > README.md"
},
"ava": {
"files": [
"test/*.test.js"
]
},
"directories": {
"test": "test"
},
"config": {
"nyc": {
"include": [
"lib/*.js"
]
}
}
}