forked from cvent/json-schema-deref
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
90 lines (90 loc) · 1.94 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"author": {
"name": "Bojan D.",
"email": "dbojan@gmail.com"
},
"name": "json-schema-deref",
"description": "Simple Node.js JSON Schema dereferencer",
"keywords": [
"json",
"schema",
"deref"
],
"version": "0.3.4",
"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": ">= 0.10.0"
},
"main": "dist/index.js",
"typings": "index.d.ts",
"dependencies": {
"async": "~2.0.0-rc.2",
"clone": "~1.0.2",
"dag-map": "~1.0.0",
"is-valid-path": "^0.1.1",
"lodash": "^4.7.0",
"md5": "~2.2.0",
"memory-cache": "~0.1.5",
"mpath": "~0.2.1",
"request": "~2.70.0",
"traverse": "~0.6.6",
"traverse-async": "~0.1.6",
"valid-url": "~1.0.9"
},
"devDependencies": {
"ava": "~0.16.0",
"babel-cli": "~6.14.0",
"babel-preset-es2015": "~6.14.0",
"jsdoc-to-markdown": "^1.3.3",
"fs.extra": "~1.3.2",
"nyc": "^5.0.0",
"validator": "^5.1.0",
"xo": "^0.16.0"
},
"scripts": {
"test": "npm run dist && ava -v -s",
"cover": "npm run dist && nyc ava",
"docs": "jsdoc2md \"lib/**/*.js\" --heading-depth 3 --template readme.hbs > README.md",
"dist": "node ./node_modules/babel-cli/bin/babel.js lib --out-dir dist",
"prepublish": "npm run dist"
},
"ava": {
"files": [
"test/*.test.js"
]
},
"xo": {
"envs": [
"node",
"es6"
],
"esnext": true,
"space": true,
"rules": {
"babel/arrow-parens": 1,
"babel/object-curly-spacing": 0,
"babel/object-shorthand": 1,
"brace-style": 1,
"no-else-return": 1,
"no-unused-vars": 1
}
},
"directories": {
"test": "test"
},
"config": {
"nyc": {
"include": [
"dist/*.js"
]
}
}
}