This repository has been archived by the owner on Dec 7, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
83 lines (83 loc) · 2.38 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
{
"name": "json-schema-lib",
"version": "0.0.6",
"description": "Extensible JSON Schema library with support for multi-file schemas using $ref",
"keywords": [
"json",
"schema",
"reference",
"pointer",
"jsonschema",
"json-schema",
"json-reference",
"json-pointer",
"$ref",
"resolve",
"dereference",
"bundle",
"validate"
],
"author": {
"name": "James Messinger",
"url": "http://bigstickcarpet.com"
},
"license": "MIT",
"homepage": "https://github.com/BigstickCarpet/json-schema-lib",
"repository": {
"type": "git",
"url": "https://github.com/BigstickCarpet/json-schema-lib.git"
},
"main": "lib/node.js",
"browser": "dist/json-schema-lib.js",
"files": [
"dist/json-schema-lib.js",
"dist/json-schema-lib.js.map",
"dist/json-schema-lib.min.js",
"dist/json-schema-lib.min.js.map",
"lib"
],
"scripts": {
"lint": "eslint lib test --fix",
"build": "simplifyify lib/browser.js --outfile dist/json-schema-lib.js --standalone jsonSchemaLib --bundle --debug --minify --test",
"test": "npm run mocha && npm run karma && npm run lint",
"mocha": "mocha",
"mocha:cover": "istanbul cover _mocha --dir coverage/node",
"karma": "karma start --single-run",
"karma:cover": "karma start --single-run --cover",
"upgrade": "npm-check -u",
"bump": "bump --prompt --grep dist/* --tag --push --all",
"release": "npm run upgrade && npm run build && npm test && npm run bump && npm publish"
},
"devDependencies": {
"chai": "^4.1.1",
"codacy-coverage": "^2.0.0",
"coveralls": "^2.11.9",
"eslint": "^4.5.0",
"eslint-config-modular": "^4.1.0",
"istanbul": "^0.4.5",
"karma": "^1.4.0",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^2.0.0",
"karma-cli": "^1.0.1",
"karma-coverage": "^1.1.1",
"karma-firefox-launcher": "^1.0.0",
"karma-host-environment": "^1.1.1",
"karma-ie-launcher": "^1.0.0",
"karma-mocha": "^1.2.0",
"karma-safari-launcher": "^1.0.0",
"karma-sauce-launcher": "^1.1.0",
"karma-sinon": "^1.0.5",
"karma-verbose-reporter": "0.0.6",
"mocha": "^3.5.0",
"npm-check": "^5.4.5",
"simplifyify": "^3.2.4",
"sinon": "^3.2.1",
"version-bump-prompt": "^3.0.1"
},
"dependencies": {
"content-type": "^1.0.2",
"follow-redirects": "^1.2.3",
"mime-types": "^2.1.16",
"ono": "^4.0.2"
}
}