-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
38 lines (38 loc) · 987 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
{
"name": "snapsjot",
"author": "Robert van Engelen and Chris Moutsos",
"version": "1.4.1",
"description": "Companion module for SJOT schemas (npm package sjot), creates a SJOT schema from JSON data to efficiently validate and type-check JSON data streams.",
"license": "BSD-3-Clause",
"main": "snapsjot.js",
"peerDependencies": {
"sjot": ">=1.3.17"
},
"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/snapSJOT.git"
},
"keywords": [
"JSON",
"SJOT",
"schema",
"validation",
"compact",
"validator",
"type",
"checker",
"lightweight",
"library"
],
"bugs": {
"url": "https://github.com/Genivia/snapSJOT/issues"
},
"homepage": "https://github.com/Genivia/snapSJOT#readme",
"tonicExampleFilename": "example.js"
}