-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
122 lines (122 loc) · 2.77 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"name": "psp-migration",
"version": "0.0.0-git-HEAD",
"description": "> PodSecurityPolicy is dead, long live ???",
"main": "src/index.ts",
"directories": {
"test": "tests"
},
"scripts": {
"test": "jest",
"updatetestsnapshot": "jest --updateSnapshot",
"ci-test": "jest --json --outputFile=result.json --testLocationInResults",
"build": "npm-run-all build:**",
"build:tsc": "tsc",
"build:pkg": "pkg .",
"build:webpack": "webpack"
},
"bin": {
"psp-migrate": "./dist/run.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/appvia/psp-migration.git"
},
"author": "Chris Nesbitt-Smith",
"license": "MIT",
"bugs": {
"url": "https://github.com/appvia/psp-migration/issues"
},
"homepage": "https://github.com/appvia/psp-migration#readme",
"devDependencies": {
"@kubernetes/client-node": "0.17.0",
"@types/jest": "29.5.14",
"@types/materialize-css": "1.0.14",
"@types/node": "18.19.71",
"@types/yargs": "17.0.33",
"ace-builds": "1.37.5",
"copy-webpack-plugin": "12.0.2",
"crypto-browserify": "3.12.1",
"css-loader": "7.1.2",
"file-loader": "6.2.0",
"git-rev-sync": "3.0.2",
"github-fork-ribbon-css": "0.2.3",
"jest": "29.7.0",
"jquery": "3.7.1",
"materialize-css": "1.0.0",
"npm-run-all": "4.1.5",
"pkg": "5.8.1",
"sass": "1.83.4",
"sass-loader": "16.0.4",
"stream-browserify": "3.0.0",
"style-loader": "4.0.0",
"ts-jest": "29.2.5",
"ts-loader": "9.5.2",
"typescript": "5.7.3",
"webpack": "5.97.1",
"webpack-cli": "6.0.1",
"webpack-dev-server": "5.2.0"
},
"pkg": {
"targets": [
"alpine-arm64",
"alpine-x64",
"linux-arm64",
"linux-x64",
"linuxstatic-arm64",
"linuxstatic-x64",
"win-arm64",
"win-x64",
"macos-arm64",
"macos-x64"
],
"outputPath": "dist/bin"
},
"jest": {
"preset": "ts-jest",
"collectCoverage": true,
"collectCoverageFrom": [
"src/**/*.ts",
"!.**",
"!src/__tests__/**",
"!node_modules/**",
"!coverage/**"
],
"testEnvironment": "node",
"testPathIgnorePatterns": [
"<rootDir>/node_modules/",
"<rootDir>/dist/"
],
"coverageReporters": [
"lcovonly",
"text",
"text-summary"
],
"coverageDirectory": "coverage",
"restoreMocks": true,
"resetMocks": true
},
"wallaby": {
"files": [
"*.ts",
"src/**/*.json",
"src/**/*.ts",
"!src/**/*.spec.ts",
{
"pattern": ".env",
"instrument": false
}
],
"tests": [
"src/**/*.spec.ts"
],
"env": {
"type": "node"
},
"testFramework": "jest"
},
"dependencies": {
"js-yaml": "^4.1.0",
"yargs": "^17.3.1"
}
}