forked from APIDevTools/json-schema-ref-parser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 2.31 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
{
"name": "json-schema-ref-parser",
"version": "4.0.4",
"description": "Parse, Resolve, and Dereference JSON Schema $ref pointers",
"keywords": [
"json",
"schema",
"jsonschema",
"json-schema",
"json-pointer",
"$ref",
"dereference",
"resolve"
],
"author": {
"name": "James Messinger",
"url": "http://bigstickcarpet.com"
},
"contributors": [
{
"name": "Boris Cherny",
"email": "[email protected]"
}
],
"license": "MIT",
"homepage": "https://github.com/BigstickCarpet/json-schema-ref-parser",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"scripts": {
"lint": "eslint lib test --fix",
"build": "npm run lint && npm run browserify",
"browserify": "simplifyify lib/index.js --outfile dist/ref-parser.js --standalone \\$RefParser --bundle --debug --minify",
"watch": "npm run browserify -- --watch",
"mocha": "mocha",
"istanbul": "istanbul cover _mocha --dir coverage/node",
"karma": "karma start --single-run",
"test": "npm run browserify -- --test && npm run istanbul && npm run karma",
"upgrade": "npm-check -u",
"bump": "bump --prompt --grep dist/* --tag --push --all",
"release": "npm run upgrade && npm test && npm run bump && npm publish",
"start": "npm run watch & http-server -o -c-1"
},
"browser": {
"fs": false
},
"repository": {
"type": "git",
"url": "https://github.com/BigstickCarpet/json-schema-ref-parser.git"
},
"devDependencies": {
"@types/json-schema": "^4.0.0",
"bower": "^1.8.2",
"chai": "^4.1.2",
"codacy-coverage": "^2.0.3",
"coveralls": "^3.0.0",
"eslint": "^4.10.0",
"eslint-config-modular": "^4.1.0",
"http-server": "^0.10.0",
"istanbul": "^0.4.5",
"karma": "^1.7.1",
"karma-chrome-launcher": "^2.2.0",
"karma-cli": "^1.0.1",
"karma-coverage": "^1.1.1",
"karma-firefox-launcher": "^1.0.1",
"karma-ie-launcher": "^1.0.0",
"karma-mocha": "^1.3.0",
"karma-safari-launcher": "^1.0.0",
"karma-sauce-launcher": "^1.2.0",
"karma-verbose-reporter": "0.0.6",
"mocha": "^4.0.1",
"npm-check": "^5.5.1",
"simplifyify": "^3.2.4",
"version-bump-prompt": "^3.1.2"
},
"dependencies": {
"call-me-maybe": "^1.0.1",
"debug": "^3.1.0",
"js-yaml": "^3.10.0",
"ono": "^4.0.2"
}
}