This repository was archived by the owner on May 8, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.63 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.63 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "kong-request-api-usage-tracker",
"version": "0.1.1",
"description": "KRAUT - a prometheus exporter for Kong API usage",
"author": "",
"private": true,
"files": [
"dist"
],
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"scripts": {
"start": "node dist/index.js",
"start:watch": "nodemon",
"start:generator": "ts-node __tests__/samples/sample-generator.ts",
"build": "tsc",
"build:docker": "docker build -t apolloai/kraut:latest . && docker push apolloai/kraut:latest",
"build:docker:production": "docker build -t apolloai/kraut:production . && docker push apolloai/kraut:production",
"test": "jest",
"test:coverage": "jest --coverage",
"test:ci": "yarn test:coverage",
"test:ci:unit": "yarn test:ci src/*",
"test:ci:integration": "yarn test:ci __tests__/*",
"watch": "yarn build --watch",
"watch:test": "yarn test --watch"
},
"dependencies": {
"fastify": "~2.15.1",
"lodash": "^4.17.19",
"node-fetch": "^2.6.0",
"prom-client": "^12.0.0",
"typescript-simple-di": "^1.1.4"
},
"devDependencies": {
"@types/jest": "^25.2.3",
"@types/lodash": "~4.14.152",
"@types/node": "~14.0.5",
"@types/node-fetch": "~2.5.7",
"@typescript-eslint/eslint-plugin": "~3.0.0",
"@typescript-eslint/parser": "~3.0.0",
"eslint": "~7.0.0",
"eslint-config-prettier": "~6.11.0",
"eslint-plugin-prettier": "~3.1.3",
"jest": "~26.0.1",
"minimist": "^1.2.5",
"nodemon": "~2.0.4",
"prettier": "~2.0.5",
"ts-jest": "~26.0.0",
"ts-node": "~8.10.1",
"typescript": "~3.9.3"
},
"engines": {
"node": ">=10.0.0"
}
}