forked from SignalK/specification
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.96 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": "signalk-schema",
"version": "0.0.1",
"description": "SignalK specification schema as an npm module with tests",
"main": "index.js",
"scripts": {
"test": "mocha",
"build": "scripts/extractKeysAndMeta.js >$TMPDIR/keyswithmetadata.json && mv $TMPDIR/keyswithmetadata.json keyswithmetadata.json",
"docs:prep": "gitbook install gitbook-docs",
"docs:keys": "scripts/processSchemaFiles.js",
"docs:html": "gitbook build gitbook-docs master",
"docs:pdf": "gitbook pdf gitbook-docs master/signalk_master.pdf",
"docs:mobi": "gitbook mobi gitbook-docs master/signalk_master.mobi",
"docs:epub": "gitbook pdf gitbook-docs master/signalk_master.epub",
"docs:serve": "gitbook serve gitbook-docs",
"docs:all": "npm run docs:prep && npm run docs:keys && npm run docs:html && npm run docs:pdf && npm run docs:mobi && npm run docs:epub",
"docs:publish": "npm run docs:all && git add master && git stash && git checkout gh-pages && git pull && git checkout stash -- master && git add master && git commit --allow-empty -m 'Update docs' && git push [email protected]:signalk/specification gh-pages"
},
"repository": {
"type": "git",
"url": "https://github.com/SignalK/specification.git"
},
"keywords": [
"signalk",
"nmea",
"marine",
"navigation",
"n2k",
"nmea200"
],
"author": "SignalK group",
"license": "CC-BY-SA-2.0",
"bugs": {
"url": "https://github.com/SignalK/specification/issues"
},
"bin": {
"signalk-validate-full": "bin/validate.js"
},
"homepage": "https://github.com/SignalK/specification",
"dependencies": {
"JSONStream": "^0.7.4",
"chai": "^1.9.2",
"debug": "^2.2.0",
"json-schema-ref-parser": "^3.1.2",
"lodash": "^3.10.1",
"tv4": "^1.2.7"
},
"devDependencies": {
"gitbook-cli": "^2.3.0",
"infuse.js": "^2.0.2",
"json-schema-load-tree": "^0.2.0",
"markdown-it": "^8.0.0",
"mocha": "^2.1.0",
"mz": "^2.4.0",
"rimraf": "^2.5.4"
}
}