-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
57 lines (57 loc) · 1.37 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
{
"name": "generator-lens-ext",
"version": "0.1.1",
"description": "Yeoman generator for Lens extension",
"copyright": "© 2020, Mirantis, Inc.",
"license": "MIT",
"main": "generators/app/index.js",
"author": {
"name": "Mirantis, Inc.",
"email": "info@k8slens.dev"
},
"scripts": {
"test": "jest"
},
"keywords": [
"yeoman-generator",
"lens",
"kubernetes",
"extensions"
],
"repository": {
"type": "git",
"url": "https://github.com/lensapp/generator-lens-ext.git"
},
"bugs": {
"url": "https://github.com/lensapp/generator-lens-ext/issues"
},
"dependencies": {
"yeoman-generator": "^4.12.0",
"yosay": "^2.0.2"
},
"devDependencies": {
"@k8slens/extensions": "^6.1.9",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^12.1.5",
"@types/jest": "^28.1.6",
"@types/node": "^16.18.2",
"@types/react": "^17.0.45",
"@typescript-eslint/eslint-plugin": "^5.45.0",
"@typescript-eslint/parser": "^5.45.0",
"eslint": "^8.28.0",
"jest": "^28.1.3",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"typescript": "^4.9.3",
"yeoman-assert": "^3.1.1",
"yeoman-test": "^3.0.0"
},
"jest": {
"modulePathIgnorePatterns": [
"<rootDir>/generators/app/templates"
],
"testPathIgnorePatterns": [
"<rootDir>/generators/app/templates/"
]
}
}