-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.27 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.27 KB
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
{
"name": "pubsub-operator",
"version": "0.3.3",
"description": "A Kubernetes Operator to manage GCloud Pub/Sub Topics and Subscriptions.",
"main": "index.js",
"scripts": {
"cli": "ts-node src/cli.ts",
"start": "ts-node src/index.ts",
"start:minikube": "NODE_ENV=minikube $npm_execpath run start",
"test": "$npm_execpath run test:setup && $npm_execpath run test:run && $npm_execpath run test:cleanup",
"build": "tsc -p tsconfig.json --outDir build",
"compile": "npm run build && npm run post-compile",
"post-compile": "cp package.json package-lock.json build",
"test:setup": "docker-compose up -d",
"test:cleanup": "docker-compose down",
"test:run": "mocha -r ts-node/register --recursive 'test/**/*.spec.{t,j}s' --exit"
},
"author": "",
"license": "UNLICENSED",
"devDependencies": {
"@types/config": "0.0.34",
"@types/mocha": "^5.2.7",
"@types/pino": "^6.3.0",
"@types/should": "^13.0.0",
"mocha": "^6.2.3",
"should": "^13.2.3",
"testdouble": "^3.16.1",
"tsc": "^1.20150623.0",
"typescript": "^3.9.7"
},
"dependencies": {
"@google-cloud/pubsub": "^0.29.1",
"@kubernetes/client-node": "^0.10.3",
"config": "^3.3.1",
"js-yaml": "^3.14.0",
"pino": "^6.6.1",
"ts-node": "^8.10.2"
}
}