-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 2.13 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 2.13 KB
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
{
"name": "ecu.test_diff-extension",
"description": "Browser extension to open the diff viewer of tracetronic products ecu.test and trace.check from browser",
"scripts": {
"start:chrome": "webpack --env TARGET=chrome --watch --config webpack.dev.cjs",
"start:firefox": "webpack --env TARGET=firefox --watch --config webpack.dev.cjs",
"build:chrome": "webpack --env TARGET=chrome --config webpack.prod.cjs",
"build:firefox": "webpack --env TARGET=firefox --config webpack.prod.cjs",
"validate:firefox": "web-ext lint --source-dir=./dist --output=json --pretty --warnings-as-errors",
"lint": "eslint --ext .ts,.js --max-warnings=0 .",
"prettier:write": "prettier --write",
"prettier:check": "prettier --check .",
"test": "c8 mocha --require ts-node/register ./test/setup.ts ./test/**/*.ts"
},
"type": "module",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.28.5",
"@babel/plugin-transform-runtime": "^7.28.5",
"@babel/preset-env": "^7.28.5",
"@babel/preset-typescript": "^7.28.5",
"@types/chrome": "^0.1.32",
"@types/expect.js": "^0.3.32",
"@types/mocha": "^10.0.10",
"@types/sinon": "^21.0.0",
"@types/sinon-chrome": "^2.2.16",
"@typescript-eslint/eslint-plugin": "^8.50.0",
"@typescript-eslint/parser": "^8.50.0",
"babel-loader": "^10.0.0",
"c8": "^10.1.3",
"copy-webpack-plugin": "^13.0.1",
"css-loader": "^7.1.2",
"dotenv-webpack": "^8.1.1",
"eslint": "^8.57.1",
"eslint-config-prettier": "^10.1.8",
"eslint-webpack-plugin": "^4.2.0",
"expect.js": "^0.3.1",
"husky": "^9.1.7",
"mini-css-extract-plugin": "^2.9.4",
"mocha": "^11.7.5",
"prettier": "^3.7.4",
"sass": "^1.97.0",
"sass-loader": "^16.0.6",
"sinon-chrome": "^3.0.1",
"ts-node": "^10.9.2",
"typescript": "^5.9.3",
"webextension-polyfill": "^0.12.0",
"webpack": "^5.104.0",
"webpack-cli": "^6.0.1",
"webpack-merge": "^6.0.1"
},
"dependencies": {
"@babel/runtime": "^7.28.4",
"@types/webextension-polyfill": "^0.12.4",
"buffer": "^6.0.3",
"normalize.css": "^8.0.1"
},
"browserslist": "> 0.25%, not dead"
}