-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
60 lines (60 loc) · 1.23 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
{
"name": "chai-json-schema",
"version": "1.5.1",
"description": "Chai plugin for JSON Schema v4",
"author": {
"name": "Bart van der Schoor",
"url": "https://github.com/chaijs"
},
"keywords": [
"array",
"assert",
"assertion",
"browser",
"chai",
"chai-plugin",
"json",
"json-schema",
"objects",
"schema",
"test",
"testing"
],
"homepage": "http://chaijs.com",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/chaijs/chai-json-schema.git"
},
"bugs": {
"url": "https://github.com/chaijs/chai-json-schema/issues"
},
"main": "./index",
"engines": {
"node": ">= 6"
},
"scripts": {
"test": "grunt test"
},
"dependencies": {
"jsonpointer.js": "0.4.0",
"tv4": "^1.3.0"
},
"devDependencies": {
"chai": "^4.2.0",
"grunt": "^1.0.1",
"grunt-bump": "^0.8.0",
"grunt-cli": "^1.2.0",
"grunt-continue": "^0.1.0",
"grunt-contrib-jshint": "^2.1.0",
"grunt-mocha": "^1.0.2",
"grunt-mocha-test": "^0.13.2",
"jshint-path-reporter": "^0.1.3",
"mocha": "^6.1.4",
"mocha-unfunk-reporter": "^0.4.0",
"requirejs": "^2.2.0"
},
"peerDependencies": {
"chai": ">= 1.6.1 < 5"
}
}