-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
90 lines (90 loc) · 3.13 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "@magda/csw-connector",
"description": "MAGDA OGC Catalogue Service for the Web (CSW) Connector",
"version": "2.0.2",
"scripts": {
"prebuild": "rimraf dist tsconfig.tsbuildinfo",
"build": "yarn run compile",
"compile": "yarn run compile-node && yarn run compile-browser",
"compile-node": "tsc -b",
"compile-browser": "webpack --config src/webpack.config.js",
"watch": "tsc -b --watch",
"start": "node dist/index.js",
"dev": "run-typescript-in-nodemon src/index.ts",
"test": "mocha",
"docker-build-local": "create-docker-context-for-node-component --build --push --tag auto --local",
"docker-build-prod": "create-docker-context-for-node-component --build --push --tag auto",
"retag-and-push": "retag-and-push",
"helm-lint": "helm lint deploy/magda-csw-connector -f deploy/test-deploy.yaml",
"helm-docs": "docker run --rm -v \"$(pwd):/helm-docs\" -u $(id -u) jnorwood/helm-docs:v1.11.0 -t ./README.md.gotmpl -o ../../README.md",
"update-all-charts": "helm dep up ./deploy/magda-csw-connector",
"add-all-chart-version-changes": "git ls-files -m | grep Chart.yaml | xargs git add && git ls-files -m | grep Chart.lock | xargs git add",
"add-all-helm-docs-changes": "yarn helm-docs && git ls-files -m | grep -i readme.md | xargs git add",
"version": "yarn update-helm-chart-version && yarn update-all-charts && yarn add-all-chart-version-changes && yarn add-all-helm-docs-changes"
},
"license": "Apache-2.0",
"devDependencies": {
"@magda/ci-utils": "^1.0.5",
"@magda/connector-test-utils": "^2.1.1",
"@magda/docker-utils": "^2.1.1",
"@types/chai": "^4.3.3",
"@types/jsonpath": "^0.1.29",
"@types/lodash": "^4.14.66",
"@types/mocha": "^7.0.1",
"@types/read-pkg-up": "^3.0.1",
"@types/request": "^2.48.1",
"@types/sinon": "^7.5.1",
"@types/xml2js": "0.0.33",
"@types/xmldom": "^0.1.29",
"@types/yargs": "^12.0.8",
"chai": "^4.3.6",
"husky": "^8.0.1",
"mocha": "^10.0.0",
"nock": "^13.2.9",
"prettier": "^2.7.1",
"pretty-quick": "^3.1.3",
"rimraf": "^3.0.0",
"sinon": "^2.4.1",
"ts-loader": "^9.4.1",
"ts-node": "^10.9.1",
"tsconfig-paths": "3.9.0",
"tsconfig-paths-webpack-plugin": "^3.2.0",
"typescript": "^4.2.4",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0"
},
"dependencies": {
"@magda/connector-sdk": "^2.1.1",
"@magda/registry-aspects": "^2.1.1",
"@magda/utils": "^2.1.1",
"jsonpath": "^1.0.0",
"lodash": "^4.17.21",
"moment": "^2.17.1",
"read-pkg-up": "^3.0.0",
"request": "^2.88.0",
"urijs": "^1.19.11",
"xml2js": "^0.4.17",
"xmldom": "^0.1.27",
"yargs": "^12.0.5"
},
"config": {
"registryUrl": "http://localhost:6101/v0",
"docker": {
"name": "data61/magda-csw-connector",
"include": "node_modules aspect-templates dist Dockerfile package.json"
},
"jwtSecret": "squirrel",
"userId": "00000000-0000-4000-8000-000000000000"
},
"magda": {
"language": "typescript",
"categories": {
"connector": true
}
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}