forked from Baggz/Amanda
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (46 loc) · 1.12 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
{
"name": "amanda",
"description": "JSON Schema validator",
"version": "0.4.2",
"author": "František Hába <hello@frantisekhaba.com>",
"devDependencies": {
"mocha": "0.14.0",
"expect.js": "0.1.2",
"debug": "0.5.0",
"async": "0.1.18",
"uglify-js": "1.2.5"
},
"keywords": [
"JSON",
"JSON Schema",
"schema",
"validator",
"validate",
"JSON validator",
"schema validator",
"async",
"browser"
],
"homepage": "https://github.com/Baggz/Amanda",
"repository": {
"type": "git",
"url": "git://github.com/Baggz/Amanda.git"
},
"main": "./releases/latest/amanda.js",
"engines": {
"node": ">= 0.6.0"
},
"bugs": {
"url": "https://github.com/Baggz/Amanda/issues",
"email": "hello@frantisekhaba.com"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/Baggz/Amanda/blob/master/README.md"
}
],
"scripts": {
"test" : "mocha --ui tdd --reporter spec ./tests/json/attributes/required/*.js ./tests/json/attributes/format/*.js ./tests/json/attributes/type/*.js ./tests/json/attributes/*.js ./tests/json/*.js"
}
}