forked from nasa-gcn/gcn-schema
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.28 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
{
"name": "@nasa-gcn/schema",
"description": "Unified JSON Schema for multi-messenger and high-energy astronomy alerts",
"version": "4.1.0",
"repository": {
"type": "git",
"url": "github:nasa-gcn/gcn-schema"
},
"scripts": {
"prepare": "husky",
"test": "node validate.mjs",
"version": "node update-tags.mjs && git add -u",
"postversion": "node update-tags.mjs --reset && git add -u && git commit --no-verify -m \"Back to development\""
},
"engines": {
"node": ">=18"
},
"devDependencies": {
"@nasa-gcn/eslint-config-gitignore": "^0.0.2",
"ajv": "^8.17.1",
"ajv-formats": "^3.0.1",
"eslint": "^8.34.0",
"eslint-config-prettier": "^9.1.0",
"execa": "^9.3.0",
"glob": "^10.1.0",
"husky": "^9.1.1",
"lint-staged": "^15.2.7",
"prettier": "3.3.3"
},
"prettier": {
"semi": false,
"singleQuote": true
},
"eslintConfig": {
"env": {
"es2022": true,
"node": true
},
"extends": [
"eslint:recommended",
"@nasa-gcn/eslint-config-gitignore",
"prettier"
],
"parserOptions": {
"sourceType": "module"
}
},
"lint-staged": {
"*.{json,js,mjs}": "prettier --write",
"*.{js,mjs}": "eslint --max-warnings 0",
"*.schema.json": "node validate.mjs"
}
}