-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
27 lines (27 loc) · 959 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
{
"name": "@linzjs/stac",
"version": "0.0.15",
"type": "module",
"scripts": {
"lint": "npx eslint . && npm run format",
"format": "npm run format:js && npm run format:markdown && npm run format:yaml",
"format:js": "npx eslint --fix .",
"format:markdown": "npx prettier **/*.md --write",
"format:yaml": "npx prettier **/*.yaml --write",
"version": "conventional-changelog -p angular -i CHANGELOG.md -s && npm run format && git add CHANGELOG.md",
"version-schema": "find extensions -type f -print0 | xargs -0 sed -i \"s/_STAC_VERSION_/v$npm_package_version/\"",
"test": "npx ospec extensions/*/tests/*.test.mjs && ./validate.sh"
},
"devDependencies": {
"@linzjs/style": "^5.4.0",
"@types/ospec": "^4.2.0",
"ajv": "^8.16.0",
"ajv-formats": "^3.0.1",
"conventional-changelog-cli": "^4.1.0",
"ospec": "^4.2.1",
"stac-node-validator": "^1.3.1"
},
"engines": {
"node": "^20.13.1"
}
}