-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
38 lines (38 loc) · 1.25 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
{
"name": "ontouml-schema",
"version": "1.0.0-draft.2",
"description": "This package provides a JSON Schema representation ontologies based on the OntoUML Metamodel. This serialization models in JSON is intended to support the exchange of models over HTTP requests.",
"main": "src/index.js",
"scripts": {
"test": "npx ajv compile -s dist/ontouml-schema.json -c ajv-formats",
"generate": "npx yaml2json -s src/ontouml-schema.yaml && mv src/ontouml-schema.json dist/ontouml-schema.json",
"draftBump": "npm version prerelease --preid=draft",
"prepublish": "npm-run-all -s generate test",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/OntoUML/ontouml-schema.git"
},
"keywords": [],
"author": "",
"bugs": {
"url": "https://github.com/OntoUML/ontouml-schema/issues"
},
"homepage": "https://github.com/OntoUML/ontouml-schema/",
"devDependencies": {
"ajv": "^8.12.0",
"ajv-cli": "^5.0.0",
"ajv-formats": "^2.1.1",
"husky": "^8.0.3",
"jest": "^29.6.2",
"lint-staged": "^14.0.1",
"npm-run-all": "^4.1.5",
"onchange": "^7.1.0",
"prettier": "3.0.2",
"yamljs": "^0.3.0"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
}
}