forked from radiantearth/stac-spec
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
26 lines (26 loc) · 940 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
{
"name": "stac-spec",
"version": "1.0.0",
"description": "STAC spec helpers to check the spec.",
"repository": "https://github.com/radiantearth/stac-spec",
"license": "Apache-2.0",
"scripts": {
"check": "npm run check-markdown && npm run check-examples",
"check-markdown": "remark . -f -r .circleci/rc.yaml",
"check-examples": "stac-node-validator . --lint --verbose --schemas .",
"format-examples": "stac-node-validator . --format --schemas .",
"publish-schemas": "node .circleci/publish-schemas.js"
},
"dependencies": {
"gh-pages": "^3.0.0",
"klaw-sync": "^6.0.0",
"remark-cli": "^8.0.0",
"remark-lint": "^7.0.0",
"remark-lint-no-html": "^2.0.0",
"remark-preset-lint-consistent": "^3.0.0",
"remark-preset-lint-markdown-style-guide": "^3.0.0",
"remark-preset-lint-recommended": "^4.0.0",
"remark-validate-links": "^10.0.0",
"stac-node-validator": "^1.1.0"
}
}