-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
81 lines (81 loc) · 2.47 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
81
{
"name": "pepr",
"description": "Kubernetes application engine",
"author": "Defense Unicorns",
"homepage": "https://github.com/defenseunicorns/pepr",
"license": "Apache-2.0",
"bin": "dist/cli.js",
"repository": "defenseunicorns/pepr",
"engines": {
"node": ">=18.0.0"
},
"version": "0.0.0-development",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"pepr": {
"name": "Development Module",
"uuid": "20e17cf6-a2e4-46b2-b626-75d88d96c88b",
"description": "Development module for pepr",
"version": "dev",
"onError": "ignore",
"alwaysIgnore": {
"namespaces": [],
"labels": []
}
},
"scripts": {
"prebuild": "rm -fr dist/* && node hack/build-template-data.js",
"build": "tsc -p tsconfig.build.json",
"test:unit": "npm run build && ava",
"test:e2e": "npm run test:e2e:k3d && npm run test:e2e:build && npm run test:e2e:image && npm run test:e2e:run",
"test:e2e:k3d": "k3d cluster delete pepr-dev && k3d cluster create pepr-dev --k3s-arg '--debug@server:0'",
"test:e2e:build": "npm run build && npm uninstall pepr -g && npm install -g . && pepr",
"test:e2e:image": "docker buildx build --tag pepr:dev . && k3d image import pepr:dev -c pepr-dev",
"test:e2e:run": "ava hack/e2e.test.js --sequential --timeout=2m",
"format:check": "eslint src && prettier src --check",
"format:fix": "eslint src --fix && prettier src --write"
},
"dependencies": {
"@kubernetes/client-node": "^0.18.1",
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-node-resolve": "^15.0.2",
"@rollup/plugin-typescript": "^11.1.0",
"@types/ramda": "^0.29.0",
"chokidar": "^3.5.3",
"commander": "^10.0.1",
"express": "^4.18.2",
"fast-json-patch": "^3.1.1",
"node-fetch": "^2.6.9",
"node-forge": "^1.3.1",
"prettier": "^2.8.7",
"prompts": "^2.4.2",
"ramda": "^0.29.0",
"rollup": "^3.20.6",
"ts-node": "^10.9.1",
"tslib": "^2.5.0",
"typescript": "^5.0.4",
"uuid": "^9.0.0"
},
"devDependencies": {
"@types/express": "^4.17.17",
"@types/node-fetch": "^2.6.3",
"@types/node-forge": "^1.3.2",
"@types/prompts": "^2.4.4",
"@types/uuid": "^9.0.1",
"@typescript-eslint/eslint-plugin": "^5.59.0",
"@typescript-eslint/parser": "^5.59.0",
"ava": "^5.2.0",
"eslint": "^8.38.0",
"nock": "^13.3.0"
},
"ava": {
"extensions": [
"ts"
],
"require": [
"ts-node/register"
],
"failFast": true,
"verbose": true
}
}