-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.54 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
{
"name": "magda-opa-policy-loader",
"version": "0.0.57-0",
"description": "A k8s init container docker image to deserialise OPA policy files from multiple k8s configMaps",
"repository": "git@github.com:magda-io/magda-opa-policy-loader.git",
"author": "Jacky Jiang <t83714@gmail.com>",
"license": "Apache License 2.0",
"private": true,
"scripts": {
"prebuild": "rimraf dist tsconfig.tsbuildinfo",
"build": "tsc -b",
"start": "node dist/index.js",
"dev": "ts-node dist/index.js",
"test": "mocha --require ts-node/register \"src/test/**/*.spec.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"
},
"devDependencies": {
"@magda/ci-utils": "^1.0.2",
"@magda/docker-utils": "^1.2.0",
"@types/chai": "^4.2.12",
"@types/fs-extra": "^9.0.1",
"@types/mocha": "^8.0.1",
"@types/node": "^14.0.27",
"@types/recursive-readdir": "^2.2.0",
"@types/tmp": "^0.2.0",
"chai": "^4.2.0",
"husky": "^3.1.0",
"mocha": "^8.1.1",
"prettier": "^1.19.1",
"pretty-quick": "^2.0.1",
"recursive-readdir": "^2.2.2",
"rimraf": "^3.0.0",
"tmp": "^0.2.1",
"ts-node": "^8.10.2",
"typescript": "^3.9.2"
},
"dependencies": {
"fs-extra": "^9.0.1"
},
"config": {
"docker": {
"name": "data61/magda-configmap-dir-loader",
"include": "node_modules dist Dockerfile package.json"
}
}
}