-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.01 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.01 KB
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"
}