-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
50 lines (50 loc) · 1.45 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
{
"name": "container-tabs-sidebar",
"version": "0.0.0",
"description": "A firefox addon that show tabs in a tree style structure in a sidebar. Inspired by Tree Style Tabs.",
"main": "index.js",
"scripts": {
"lint": "eslint ./src && web-ext lint --source-dir ./src",
"build": "cd src && web-ext build --overwrite-dest",
"package": "rm -rf src/web-ext-artifacts && npm run build && mv src/web-ext-artifacts/container_tabs_sidebar-*.zip addon.xpi",
"dev": "web-ext run --source-dir ./src",
"dev:tc": "web-ext run --source-dir ./src -p TemporaryContainers"
},
"repository": {
"type": "git",
"url": "git+https://github.com/maciekmm/container-tabs-sidebar.git"
},
"keywords": [
"firefox",
"addon",
"containers",
"container",
"tab",
"privacy"
],
"author": "Maciej Mionskowski",
"license": "MPL-2.0",
"bugs": {
"url": "https://github.com/maciekmm/container-tabs-sidebar/issues"
},
"homepage": "https://github.com/maciekmm/container-tabs-sidebar#readme",
"devDependencies": {
"@types/firefox-webext-browser": "^120.0.3",
"addons-linter": "^6.14.0",
"eslint": "^8.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^8.0.1",
"lint-staged": "^13.0.0",
"prettier": "^2.0.5",
"web-ext": "^7.8.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": "eslint ./src --cache --fix"
}
}