forked from ngageoint/opensphere-state-schema
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.39 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
{
"author": "Robert Kausch <rkausch@caci.com>",
"repository": {
"type": "git",
"url": "https://github.com/ngageoint/opensphere-state-schema.git"
},
"husky": {
"hooks": {
"commit-msg": "validate-commit-msg"
}
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
},
"validate-commit-msg": {
"helpMessage": "\nPlease fix your commit message (consider using 'npm i -g commitizen'). Well-formatted commit messages allow us to automate our changelog and npm releases.\n\nExamples:\n\"fix(copy-view): Fixed an error when resolving paths for view directories\"\n\"feat(gcc): Added support for defines\"\n\nIf you have installed commitizen, try running 'git cz'."
}
},
"description": "OpenSphere state file schema",
"devDependencies": {
"cz-conventional-changelog": "^1.2.0",
"husky": "^1.3.1",
"validate-commit-msg": "^2.8.2"
},
"directories": {
"src": "src"
},
"keywords": [
"xsd",
"bits",
"OpenSphere",
"state"
],
"license": "Apache-2.0",
"main": "none",
"name": "opensphere-state-schema",
"scripts": {
"package:update": "if git diff --name-only ORIG_HEAD HEAD | grep --quiet package.json; then npm update && npm install; fi",
"test": "for i in src/main/xsd/*/*/*.xsd; do xmllint $i > out.log && echo \"valid XSD: $i\" || (echo \"bad XSD: $i\"; exit 1); done"
},
"version": "2.4.0"
}