generated from stac-extensions/template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
41 lines (41 loc) · 1.39 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
{
"name": "stac-extensions",
"version": "development",
"private": "true",
"type": "module",
"scripts": {
"lint": "eslint scripts",
"pretest": "npm run lint",
"test": "npm run check-markdown && npm run check-examples",
"check-markdown": "remark . --frail --rc-path .github/remark.yaml",
"check-examples": "stac-node-validator . --lint --verbose --schemaMap https://planetlabs.github.io/stac-extension/{{version}}/schema.json=./schema.json",
"format-examples": "stac-node-validator . --format --schemaMap https://planetlabs.github.io/stac-extension/{{version}}/schema.json=./schema.json",
"build": "node scripts/build.js"
},
"devDependencies": {
"@octokit/plugin-retry": "^4.1.3",
"@octokit/rest": "^19.0.7",
"es-main": "^1.2.0",
"eslint": "^8.37.0",
"eslint-config-planet": "^20.0.3",
"fs-extra": "^11.1.1",
"mustache": "^4.2.0",
"remark-cli": "^11.0.0",
"remark-gfm": "^3.0.1",
"remark-lint": "^9.1.1",
"remark-lint-no-html": "^3.1.1",
"remark-preset-lint-consistent": "^5.1.1",
"remark-preset-lint-markdown-style-guide": "^5.1.2",
"remark-preset-lint-recommended": "^6.1.2",
"remark-validate-links": "^12.1.0",
"stac-node-validator": "^1.2.2",
"yargs": "^17.7.1"
},
"eslintConfig": {
"extends": "planet",
"parserOptions": {
"sourceType": "module",
"ecmaVersion": "latest"
}
}
}