forked from zaggino/z-schema
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
91 lines (91 loc) · 2.08 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
86
87
88
89
90
91
{
"name": "z-schema",
"version": "4.2.2",
"engines": {
"node": ">=6.0.0"
},
"description": "JSON schema validator",
"homepage": "https://github.com/zaggino/z-schema",
"authors": [
"Martin Zagora <zaggino@gmail.com>"
],
"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",
"index.d.ts"
],
"types": "index.d.ts",
"scripts": {
"prepare": "grunt",
"prepublishOnly": "npm test",
"test": "jasmine-node test/ && grunt lint",
"test-z": "jasmine-node test/spec/ZSchemaTestSuiteSpec.js",
"grunt": "grunt"
},
"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": "^4.4.2",
"lodash.isequal": "^4.5.0",
"validator": "^11.0.0"
},
"optionalDependencies": {
"commander": "^2.7.1"
},
"devDependencies": {
"coveralls": "^3.0.0",
"grunt": "^1.0.1",
"grunt-browserify": "^5.2.0",
"grunt-cli": "^1.2.0",
"grunt-contrib-copy": "^1.0.0",
"grunt-contrib-jasmine": "^1.1.0",
"grunt-contrib-jshint": "^2.0.0",
"grunt-contrib-uglify": "^3.1.0",
"grunt-jscs": "^3.0.1",
"grunt-lineending": "^1.0.0",
"jasmine-node": "^1.14.5",
"jasmine-reporters": "^2.2.1",
"remapify": "^2.1.0"
}
}