-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
82 lines (82 loc) · 2.85 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
{
"private": true,
"scripts": {
"build:dev": "webpack --config webpack.config.development.js",
"build:prod": "npm run build:clean && cross-env BROWSER_TARGET=firefox webpack --config webpack.config.production.js && cross-env BROWSER_TARGET=chrome webpack --config webpack.config.production.js",
"build:clean": "rimraf ./dist",
"lint": "npm-run-all --parallel lint:scripts lint:styles",
"lint:scripts": "eslint \"{src,test}/**/*.ts\"",
"lint:styles": "stylelint \"src/**/*.scss\"",
"test": "npm-run-all --parallel test:unit",
"test:unit": "nyc --include=src --all --extension=.ts --reporter=text --reporter=lcovonly instant-mocha --webpack-config webpack.config.test.js --require jsdom-global/register --require test/setup.js \"test/**/*.ts\""
},
"dependencies": {
"bind-decorator": "1.0.11",
"lz-string": "1.5.0",
"normalize.css": "8.0.1",
"webextension-polyfill": "0.12.0"
},
"devDependencies": {
"@babel/core": "7.24.7",
"@babel/plugin-proposal-decorators": "7.24.7",
"@babel/preset-env": "7.24.7",
"@babel/preset-typescript": "7.24.7",
"@jsdevtools/coverage-istanbul-loader": "3.0.5",
"@types/chai": "4.3.16",
"@types/jsdom": "21.1.7",
"@types/lz-string": "1.5.0",
"@types/mocha": "10.0.7",
"@types/node": "20.14.9",
"@types/webextension-polyfill": "0.10.7",
"@typescript-eslint/eslint-plugin": "6.21.0",
"@typescript-eslint/parser": "6.21.0",
"ajv": "8.16.0",
"autoprefixer": "10.4.19",
"babel-loader": "9.1.3",
"canvas": "2.11.2",
"chai": "5.1.1",
"copy-webpack-plugin": "12.0.2",
"core-js": "3.37.1",
"cross-env": "7.0.3",
"css-loader": "7.1.2",
"eslint": "8.57.0",
"eslint-config-prettier": "9.1.0",
"eslint-import-resolver-typescript": "3.6.1",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-prettier": "5.1.3",
"eslint-plugin-promise": "6.1.1",
"fork-ts-checker-webpack-plugin": "9.0.2",
"html-webpack-plugin": "5.6.0",
"instant-mocha": "1.5.2",
"jsdom": "24.1.0",
"jsdom-global": "3.0.2",
"mini-css-extract-plugin": "2.9.0",
"mocha": "10.5.0",
"npm-run-all": "4.1.5",
"nyc": "17.0.0",
"optimize-css-assets-webpack-plugin": "6.0.1",
"postcss-loader": "8.1.1",
"postcss-scss": "4.0.9",
"prettier": "3.3.2",
"resolve-url-loader": "5.0.0",
"rimraf": "5.0.7",
"sass": "1.77.6",
"sass-loader": "14.2.1",
"style-loader": "4.0.0",
"stylelint": "16.6.1",
"stylelint-config-standard": "36.0.1",
"stylelint-scss": "6.3.2",
"terser-webpack-plugin": "5.3.10",
"@typestrong/ts-mockito": "2.6.6",
"tsconfig-paths-webpack-plugin": "4.1.0",
"typescript": "5.5.3",
"webpack": "5.92.1",
"webpack-cli": "5.1.4",
"webpack-merge": "6.0.1",
"zip-webpack-plugin": "4.0.1"
},
"browserslist": [
"Firefox >= 109",
"Chrome >= 88"
]
}