-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
57 lines (57 loc) · 1.53 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": "@bbc/object-based-media-schema",
"version": "1.2.0",
"description": "JSON schemas which describe a common language for object-based media",
"main": "lib/validate.js",
"keywords": [
"BBC",
"BBC Research & Development",
"schema",
"interactive",
"media",
"object",
"personalised"
],
"scripts": {
"test": "./bin/validate_samples.sh",
"schemaUI": "nodemon -L --watch schemas/ --exec node schemaUI/server.js"
},
"publishConfig": {
"access": "public"
},
"bin": {
"object-based-media-schema": "./bin/validate"
},
"files": [
"/lib",
"/schemas",
"/docs/SCHEMA.md"
],
"engines": {
"node": ">= 10.0.0"
},
"repository": {
"type": "git",
"url": "git://github.com/bbc/object-based-media-schema.git"
},
"author": "BBC Research & Development",
"license": "GPL-3.0-only",
"bugs": {
"url": "https://github.com/bbc/object-based-media-schema/issues"
},
"homepage": "https://github.com/bbc/object-based-media-schema#readme",
"dependencies": {
"jsonschema": "^1.4.0"
},
"devDependencies": {
"@json-editor/json-editor": "^2.0.0",
"express": "^4.17.1",
"express-handlebars": "^3.1.0",
"json-schema-merge-allof": "^0.6.0",
"json-schema-ref-parser": "^5.0.0",
"mkdirp": "^0.5.1",
"node-dir": "^0.1.17",
"nodemon": "^2.0.2",
"serve-index": "^1.9.1"
}
}