forked from zaggino/z-schema
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
85 lines (85 loc) · 1.95 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
{
"name": "z-schema",
"version": "3.16.1",
"description": "JSON schema validator",
"homepage": "https://github.com/zaggino/z-schema",
"authors": [
"Martin Zagora <[email protected]>"
],
"license": "MIT",
"keywords": [
"JSON",
"Schema",
"Validator"
],
"repository": {
"type": "git",
"url": "https://github.com/zaggino/z-schema.git"
},
"bugs": {
"url": "https://github.com/zaggino/z-schema/issues"
},
"main": "src/ZSchema.js",
"bin": {
"z-schema": "./bin/z-schema"
},
"files": [
"bin",
"src",
"dist",
"LICENSE",
"README.md"
],
"scripts": {
"prepublish": "grunt",
"test": "grunt test && grunt lint"
},
"testling": {
"scripts": [
"test/lib/jasmine-2.0.1/jasmine.js",
"test/lib/jasmine-2.0.1/jasmine-html.js",
"test/lib/jasmine-2.0.1/boot.js",
"test/lib/jasmine-2.0.1/tap_reporter.js",
"test/Runner.js",
"dist/ZSchema-browser-min.js",
"dist/ZSchema-browser-test.js"
],
"browsers": [
"iexplore/9..latest",
"chrome/4",
"chrome/28..latest",
"firefox/3.5",
"firefox/23..latest",
"safari/5.1..latest",
"opera/12..latest",
"iphone/6..latest",
"ipad/6..latest",
"android-browser/4.2..latest"
]
},
"dependencies": {
"lodash.get": "^3.7.0",
"validator": "^4.0.5"
},
"optionalDependencies": {
"commander": "^2.7.1",
"request": "^2.54.0"
},
"devDependencies": {
"coveralls": "latest",
"grunt": "latest",
"grunt-cli": "latest",
"grunt-browserify": "~3.2.1",
"grunt-contrib-copy": "latest",
"grunt-contrib-jasmine": "latest",
"grunt-contrib-jshint": "latest",
"grunt-contrib-uglify": "latest",
"grunt-jasmine-node": "latest",
"grunt-jasmine-node-coverage": "latest",
"grunt-jscs": "latest",
"grunt-lineending": "latest",
"jasmine-node": "latest",
"jasmine-reporters": "latest",
"remapify": "latest"
}
}