-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.26 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.26 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
39
40
41
42
43
{
"name": "openmetadata-standards",
"version": "1.0.0",
"description": "OpenMetadata Standards - Schemas, Ontologies, and Specifications for Metadata Management",
"main": "index.js",
"scripts": {
"docs:serve": "mkdocs serve",
"docs:build": "mkdocs build",
"docs:deploy": "mkdocs gh-deploy --force",
"validate:schemas": "node scripts/validate-schemas.js",
"validate:examples": "node scripts/validate-examples.js",
"generate:types": "node scripts/generate-types.js",
"lint:schemas": "ajv compile -s 'schemas/**/*.json' --strict=true",
"test": "npm run validate:schemas && npm run validate:examples"
},
"repository": {
"type": "git",
"url": "https://github.com/open-metadata/OpenMetadataStandards.git"
},
"keywords": [
"metadata",
"schema",
"ontology",
"rdf",
"json-schema",
"data-catalog",
"data-governance",
"openmetadata"
],
"author": "OpenMetadata Community",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/open-metadata/OpenMetadataStandards/issues"
},
"homepage": "https://openmetadatastandards.org",
"devDependencies": {
"ajv": "^8.12.0",
"ajv-formats": "^2.1.1",
"json-schema-to-typescript": "^13.1.0",
"glob": "^10.3.0"
},
"dependencies": {}
}