forked from mafintosh/is-my-json-valid
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 901 Bytes
/
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
{
"name": "is-my-json-valid",
"version": "2.15.0",
"description": "A JSONSchema validator that uses code generation to be extremely fast",
"main": "index.js",
"dependencies": {
"generate-function": "^2.0.0",
"generate-object-property": "^1.1.0",
"jsonpointer": "^4.0.0",
"xtend": "^4.0.0"
},
"devDependencies": {
"browserify": "^12.0.1",
"tape": "^2.13.4"
},
"scripts": {
"test": "tape test/*.js",
"browserify": "browserify index.js -s is-my-json-valid -o dist/index.js"
},
"repository": {
"type": "git",
"url": "https://github.com/mafintosh/is-my-json-valid"
},
"keywords": [
"json",
"schema",
"orderly",
"jsonschema"
],
"author": "Mathias Buus",
"license": "MIT",
"bugs": {
"url": "https://github.com/mafintosh/is-my-json-valid/issues"
},
"homepage": "https://github.com/mafintosh/is-my-json-valid"
}