-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
38 lines (38 loc) · 1.01 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
{
"name": "sjot",
"author": "Robert van Engelen and Chris Moutsos",
"version": "1.4.4",
"description": "Schemas for JSON Objects, or simply SJOT, offers faster JSON validation and type checking with lightweight schemas and compact validators. SJOT schemas have the look and feel of object templates and are easy to use.",
"license": "BSD-3-Clause",
"main": "sjot.js",
"devDependencies": {
"tape": "~2.4.0"
},
"scripts": {
"preversion": "npm test",
"version": "./build.sh && git add -A dist",
"postversion": "git push && git push --tags",
"test": "./test.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Genivia/SJOT.git"
},
"keywords": [
"JSON",
"SJOT",
"schema",
"validation",
"compact",
"validator",
"type",
"checker",
"lightweight",
"library"
],
"bugs": {
"url": "https://github.com/Genivia/SJOT/issues"
},
"homepage": "https://github.com/Genivia/SJOT#readme",
"tonicExampleFilename": "example.js"
}