-
Notifications
You must be signed in to change notification settings - Fork 64
/
package.json
80 lines (80 loc) · 1.91 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
{
"name": "json-refs",
"version": "3.0.15",
"description": "Various utilities for JSON References (http://tools.ietf.org/html/draft-pbryan-zyp-json-ref-03).",
"main": "index.js",
"scripts": {
"gulp": "gulp",
"test": "gulp test"
},
"author": {
"name": "Jeremy Whitlock",
"email": "[email protected]",
"url": "https://github.com/whitlockjc"
},
"contributors": [],
"engines": {
"node": ">=0.8"
},
"bin": {
"json-refs": "./bin/json-refs"
},
"bugs": {
"url": "https://github.com/whitlockjc/json-refs/issues"
},
"files": [
"bin",
"dist",
"index.d.ts",
"index.js"
],
"types": "./index.d.ts",
"homepage": "https://github.com/whitlockjc/json-refs",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/whitlockjc/json-refs.git"
},
"keywords": [
"json"
],
"devDependencies": {
"@babel/core": "^7.8.4",
"@babel/preset-env": "^7.8.4",
"@otris/jsdoc-tsd": "^1.0.4",
"babel-loader": "^8.0.6",
"brfs": "~2.0.2",
"connect": "^3.7.0",
"del": "^5.1.0",
"gulp": "~3.9.1",
"gulp-concat": "^2.6.1",
"gulp-eslint": "^6.0.0",
"gulp-istanbul": "~1.1.3",
"gulp-jsdoc-to-markdown": "^1.2.2",
"gulp-jsdoc3": "^2.0.0",
"gulp-load-plugins": "^2.0.2",
"gulp-mocha": "~3.0.1",
"gulp-replace": "^1.0.0",
"jsdoc": "^3.5.5",
"karma": "^4.4.1",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.2.5",
"karma-phantomjs-launcher": "^1.0.4",
"karma-webpack": "^4.0.2",
"mocha": "^7.0.1",
"phantomjs-prebuilt": "^2.1.16",
"run-sequence": "^2.2.1",
"transform-loader": "^0.2.4",
"webpack": "^4.41.6"
},
"dependencies": {
"commander": "~4.1.1",
"graphlib": "^2.1.8",
"js-yaml": "^3.13.1",
"lodash": "^4.17.15",
"native-promise-only": "^0.8.1",
"path-loader": "^1.0.10",
"slash": "^3.0.0",
"uri-js": "^4.2.2"
}
}