forked from nasa-gcn/gcn-schema
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 974 Bytes
/
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
{
"name": "@nasa-gcn/schema",
"description": "Unified JSON Schema for multi-messenger and high-energy astronomy alerts",
"version": "4.0.0",
"repository": {
"type": "git",
"url": "github:nasa-gcn/gcn-schema"
},
"scripts": {
"prepare": "husky install",
"validate:prettier": "prettier --check .",
"validate:jsonschema": "node validate.mjs",
"validate": "run-s validate:*",
"version": "node update-tags.mjs && git add -u",
"postversion": "node update-tags.mjs --reset && git add -u && git commit -m \"Back to development\""
},
"devDependencies": {
"ajv": "^8.12.0",
"glob": "^9.0.1",
"husky": "^8.0.3",
"lint-staged": "^13.1.0",
"npm-run-all": "^4.1.5",
"prettier": "2.8.3"
},
"prettier": {
"semi": false,
"singleQuote": true
},
"lint-staged": {
"*.{json,js,mjs}": "prettier --write",
"*.schema.json": "node validate.mjs"
},
"dependencies": {
"ajv-formats": "^2.1.1"
}
}