-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
80 lines (80 loc) · 2.52 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
{
"name": "@magda/csv-connector",
"description": "MAGDA Csv/Xlsx/Ods etc data catalog Connector",
"version": "0.0.57-0",
"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",
"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-csv-connector -f deploy/test-deploy.yaml",
"test": "mocha --require ts-node/register --require tsconfig-paths/register \"src/test/**/*.spec.ts\""
},
"license": "Apache-2.0",
"devDependencies": {
"@magda/ci-utils": "^1.0.2",
"@magda/docker-utils": "^1.2.0",
"@types/jsonpath": "^0.1.29",
"@types/lodash": "^4.14.66",
"@types/read-pkg-up": "^3.0.1",
"@types/request": "^2.48.1",
"@types/urijs": "^1.15.34",
"@types/xml2js": "0.0.33",
"@types/xmldom": "^0.1.29",
"@types/yargs": "^12.0.8",
"@types/chai": "^4.2.8",
"@types/mocha": "^7.0.1",
"husky": "^3.1.0",
"chai": "^4.2.0",
"mocha": "^7.0.1",
"nock": "^11.7.2",
"prettier": "^1.19.1",
"pretty-quick": "^2.0.1",
"rimraf": "^3.0.0",
"ts-loader": "^6.2.1",
"tsconfig-paths-webpack-plugin": "^3.2.0",
"typescript": "^3.7.2",
"webpack": "^4.28.3",
"webpack-cli": "^3.3.10",
"@magda/connector-test-utils": "^0.0.57-0"
},
"dependencies": {
"@magda/connector-sdk": "^0.0.57-0",
"@magda/registry-aspects": "^0.0.57-0",
"@magda/utils": "^0.0.57-0",
"escape-html": "^1.0.3",
"jsonpath": "^1.0.0",
"read-pkg-up": "^3.0.0",
"request": "^2.88.0",
"string-similarity": "^1.2.1",
"xlsx": "^0.14.0",
"yargs": "^12.0.5"
},
"config": {
"registryUrl": "http://localhost:6101/v0",
"docker": {
"name": "data61/magda-csv-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"
}
}
}