-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "iso2stac",
"version": "1.0.0",
"description": "ISO 19115 ANZLIC profile metadata to STAC converter",
"homepage": "https://github.com/linz/iso2stac",
"repository": "https://github.com/linz/iso2stac",
"bugs": "https://github.com/linz/iso2stac/issues",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"prepare": "husky install",
"pretty-quick": "pretty-quick",
"build": "tsc",
"lint": "eslint {src/**,*.js}"
},
"keywords": [
"ANZLIC",
"AS/NZS ISO 19115.1:2015",
"Australia New Zealand Land Information Council Metadata Profile",
"ISO ",
"STAC",
"SpatioTemporal Asset Catalog",
"XML",
"XSLT",
"convert"
],
"author": "Toitū Te Whenua Land Information New Zealand",
"contributors": [
"Jack Reyneke",
"Mitchell Paff",
"Victor Engmark"
],
"license": "MIT",
"devDependencies": {
"@linzjs/style": "^2.1.3",
"@prettier/plugin-xml": "^0.13.1",
"@types/node": "^16.3.1",
"@types/pino": "^6.3.8",
"husky": "^7.0.1",
"prettier": "^2.3.2",
"pretty-quick": "^3.1.1",
"xslt3": "^2.2.0"
},
"dependencies": {
"@linzjs/s3fs": "^5.0.0",
"aws-sdk": "^2.924.0",
"dotenv": "^10.0.0",
"p-limit": "^3.1.0",
"pino": "^6.12.0",
"saxon-js": "^2.2.0"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}