-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
23 lines (23 loc) · 821 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
{
"name": "@linzjs/stac",
"version": "0.0.15",
"type": "module",
"scripts": {
"lint": "npx eslint . --fix && yarn format",
"format": "yarn format:markdown && yarn format:yaml",
"format:markdown": "npx prettier **/*.md --write",
"format:yaml": "npx prettier **/*.yaml --write",
"version": "conventional-changelog -p angular -i CHANGELOG.md -s && yarn 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 && ./validate.sh"
},
"devDependencies": {
"@linzjs/style": "^3.15.0",
"@types/ospec": "^4.0.5",
"ajv": "^8.12.0",
"ajv-formats": "^2.1.1",
"conventional-changelog-cli": "^2.2.2",
"ospec": "^4.1.7",
"stac-node-validator": "^1.2.2"
}
}