UNPKG

1.6 kBJSONView Raw
1{
2 "name": "@mittwald/kubernetes",
3 "description": "Kubernetes client library",
4 "main": "index.js",
5 "typings": "index.d.ts",
6 "scripts": {
7 "generate": "yarn generate:index",
8 "generate:index": "node scripts/build-index.js",
9 "test:jest": "jest --verbose -w 1",
10 "test:compile": "tsc -p tsconfig.test.json",
11 "test": "yarn test:jest && yarn test:compile",
12 "compile": "tsc -p tsconfig.build.json",
13 "lint": "tslint --project tsconfig.json",
14 "lint-fix": "tslint --project tsconfig.json --fix"
15 },
16 "author": "Martin Helmich <m.helmich@mittwald.de>",
17 "license": "MIT",
18 "engines": {
19 "node": ">=10.0"
20 },
21 "dependencies": {
22 "@types/lodash": "^4.14.149",
23 "@types/request": "^2.48.4",
24 "@types/yamljs": "^0.2.30",
25 "bottleneck": "^2.19.5",
26 "debug": "^4.1.1",
27 "jsonschema": "^1.2.6",
28 "lodash": "^4.17.21",
29 "prom-client": "^12.0.0",
30 "request": "^2.88.2",
31 "yamljs": "^0.3.0"
32 },
33 "devDependencies": {
34 "@types/deep-equal": "^1.0.1",
35 "@types/jest": "^25.2.1",
36 "@types/node": "^13.11.0",
37 "deep-equal": "^2.0.2",
38 "jest": "^25.2.7",
39 "nock": "^12.0.3",
40 "ts-jest": "^25.3.1",
41 "tslint": "^6.1.1",
42 "typescript": "~3.8.3"
43 },
44 "publishConfig": {
45 "access": "public"
46 },
47 "jest": {
48 "globals": {
49 "ts-jest": {
50 "tsConfig": "tsconfig.base.json"
51 }
52 },
53 "testEnvironment": "node",
54 "transform": {
55 ".(ts|tsx)": "ts-jest"
56 },
57 "testRegex": "/tests/.*test.*$",
58 "moduleFileExtensions": [
59 "js",
60 "ts",
61 "tsx"
62 ]
63 },
64 "version": "3.3.5"
65}