forked from Baggz/Amanda
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (42 loc) · 970 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"name": "amanda",
"description": "JSON Schema validator",
"version": "0.3.0",
"author": "František Hába <[email protected]>",
"devDependencies": {
"nodeunit": "0.6.4"
},
"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": "./src/amanda.js",
"engines": {
"node": ">= 0.6.0"
},
"bugs": {
"url": "https://github.com/Baggz/Amanda/issues",
"email": "[email protected]"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/Baggz/Amanda/blob/master/README.md"
}
],
"scripts": {
"test" : "nodeunit tests/addValidator.js tests/errorMessages.js tests/errorObject.js tests/validation/* tests/validators/*"
}
}