-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 992 Bytes
/
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
{
"name": "webpack-chrome-manifest-generator-plugin",
"version": "2.0.0",
"main": "./lib/index.js",
"author": "Rodrigo Saboya",
"license": "MIT",
"private": false,
"repository": {
"type": "git",
"url": "https://github.com/saboya/webpack-chrome-manifest-generator-plugin"
},
"scripts": {
"build": "tsc src/index.ts -d -m commonjs -t es2017 --outDir lib",
"lint": "oxlint -c ./eslintrc.json -D all --fix; dprint fmt",
"test": "jest --ci --reporters=default --reporters=jest-junit --coverageReporters=cobertura"
},
"resolutions": {
"istanbul-reports": "^3.1.6"
},
"devDependencies": {
"@types/estree": "^1.0.5",
"@types/jest": "^29.5.12",
"@types/tapable": "^2.2.7",
"dprint": "^0.45.0",
"jest": "^29.7.0",
"jest-junit": "^16.0.0",
"memfs": "^4.6.0",
"oxlint": "^0.2.8",
"ts-jest": "^29.1.2",
"typescript": "^5.3.3",
"webpack": "^5.94.0"
},
"dependencies": {
"webpack-sources": "^3.2.3"
}
}