-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 2.14 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 2.14 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
{
"name": "autoarchive-reloaded",
"description": "Thunderbird Addon for archiving old mails automatically",
"repository": {
"type": "github",
"url": "https://github.com/Brummolix/AutoarchiveReloaded/"
},
"license": "GPL-3.0-or-later",
"scripts": {
"build:clean": "rimraf dist",
"build:copy": "cpx \"resources/**/*\" \"dist/release\" && cpx \"src/backgroundScript/**/*.{js,json,html,css,txt}\" \"dist/release\" && cpx \"src/options/**/*.{js,json,html,css,txt}\" \"dist/release\" && cpx \"src/popup/**/*.{js,json,html,css,v}\" \"dist/release\" && cpx \"licence.txt\" \"dist/release\" && cpx \"README.md\" \"dist/release\"",
"build:webpack": "webpack --config webpack.config.js",
"build:buildXpi": "cd dist/release && bestzip ../../dist/AutoArchiveReloaded.xpi ./*",
"build:test": "mocha ./dist/test.js --ignore \"node_modules/**\"",
"build:lint": "eslint \"src/**/*.{ts,js}\" --ignore-pattern \"src/**/libs/**/*.js\"",
"build": "npm run build:clean && npm run build:copy && npm run build:webpack && npm run build:buildXpi && npm run build:test && npm run build:lint"
},
"devDependencies": {
"@eslint/compat": "^2.0.1",
"@eslint/eslintrc": "^3.3.3",
"@eslint/js": "^9.39.2",
"@types/bootstrap-notify": "^3.1.38",
"@types/jquery": "^3.5.33",
"@types/mocha": "^10.0.10",
"@typescript-eslint/eslint-plugin": "^8.57.2",
"@typescript-eslint/parser": "^8.57.2",
"assert": "^2.1.0",
"assertthat": "^6.5.2",
"bestzip": "^2.2.3",
"cpx2": "^8.0.0",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jsdoc": "^62.8.1",
"eslint-plugin-prefer-arrow": "^1.2.3",
"eslint-plugin-prettier": "^5.5.5",
"globals": "^17.4.0",
"mocha": "^11.7.5",
"prettier": "^3.8.1",
"rimraf": "^6.1.3",
"ts-loader": "^9.5.4",
"ts-node": "^10.9.2",
"typescript": "^5.9.3",
"webpack": "^5.105.4",
"webpack-cli": "^7.0.2",
"glob": "^13.0.6"
}
}