-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
122 lines (122 loc) · 4.35 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": "sonatype-platform-browser-extension",
"version": "2.9.1",
"description": "Shift Security Left with the Sonatype Platform Browser Extension - Scan Open Source Repositories for known Vulnerabilities.",
"keywords": [
"sonatype",
"browser",
"extension",
"shift-left",
"sca",
"software composition analysis"
],
"homepage": "https://sonatype-nexus-community.github.io/sonatype-platform-browser-extension/",
"bugs": {
"url": "https://github.com/sonatype-nexus-community/sonatype-platform-browser-extension/issues"
},
"license": "Apache-2.0",
"author": {
"name": "Sonatype Community",
"email": "[email protected]",
"url": "https://github.com/sonatype-nexus-community"
},
"private": true,
"repository": "[email protected]:sonatype-nexus-community/sonatype-platform-browser-extension.git",
"module": "es6",
"dependencies": {
"@agney/react-loading": "^0.1.2",
"@fortawesome/free-solid-svg-icons": "^6.3.0",
"@sonatype/nexus-iq-api-client": "^0.184.3",
"@sonatype/react-shared-components": "12.16.2",
"@types/chrome": "^0.0.218",
"@types/firefox-webext-browser": "^109.0.0",
"cash-dom": "^8.1.0",
"classnames": "^2.3.2",
"compare-versions": "^6.1.0",
"localforage": "^1.10.0",
"node-window-polyfill": "^1.0.2",
"packageurl-js": "^1.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"ts-deepmerge": "^6.1.0",
"web-vitals": "^1.1.1"
},
"devDependencies": {
"@babel/core": "^7.21.0",
"@babel/preset-env": "^7.20.2",
"@babel/preset-typescript": "^7.21.0",
"@plasmo-corp/ewu": "^0.6.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/exec": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/node": "^20.11.25",
"@typescript-eslint/eslint-plugin": "^5.54.0",
"@typescript-eslint/parser": "^5.54.0",
"babel-jest": "^29.4.3",
"copy-webpack-plugin": "^11.0.0",
"csp-html-webpack-plugin": "^5.1.0",
"css-loader": "^6.7.3",
"enzyme": "^3.11.0",
"eslint": "^8.35.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.23.2",
"eslint-plugin-react-hooks": "^4.6.0",
"file-loader": "^6.2.0",
"fork-ts-checker-webpack-plugin": "^6.2.6",
"html-webpack-plugin": "^5.5.0",
"isomorphic-fetch": "^3.0.0",
"jest": "^27.0.0",
"jest-chrome": "^0.8.0",
"jest-css-modules-transform": "^4.3.0",
"jest-svg-transformer": "^1.0.0",
"jest-transform-stub": "^2.0.0",
"mini-css-extract-plugin": "^2.7.2",
"node-polyfill-webpack-plugin": "^2.0.1",
"prettier": "^2.8.4",
"react-test-renderer": "^18.2.0",
"rimraf": "^4.1.2",
"sass": "^1.58.3",
"sass-loader": "^13.2.0",
"semantic-release-chrome": "^3.2.0",
"style-loader": "^3.3.1",
"svg-inline-loader": "^0.8.2",
"ts-jest": "^27.0.4",
"ts-loader": "^9.2.4",
"typescript": "^4.9.5",
"url-loader": "^4.1.1",
"watch": "^1.0.2",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1"
},
"scripts": {
"big_build": "eslint './src/**/*.{ts,tsx}' --fix && webpack --mode production --env production --progress",
"build": "webpack --mode development --progress",
"lint": "eslint './src/**/*.{ts,tsx}'",
"test": "jest --detectOpenHandles --forceExit"
},
"jest": {
"preset": "ts-jest",
"transformIgnorePatterns": [
"/node_modules/(?!@sonatype/react-shared-components|pretty-bytes)"
],
"transform": {
"^.+\\.(ts|tsx)?$": "ts-jest",
"^.+\\.(js|jsx)$": "babel-jest",
".+\\.(css|styl|less|sass|scss)$": "jest-css-modules-transform",
".+\\.(png|jpg|ttf|woff|woff2|svg)$": "jest-transform-stub"
},
"setupFilesAfterEnv": [
"./src/setupTests.ts"
],
"testEnvironment": "jsdom",
"globals": {
"ts-jest": {
"tsconfig": {
"allowJs": true
}
}
},
"verbose": true
}
}