-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 792 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 792 Bytes
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
{
"name": "tab-counter-plus",
"description": "Shows the number of tabs in each window. Efficient and customizable.",
"author": "Oriol Brufau",
"license": "Apache-2.0",
"homepage": "https://github.com/Loirooriol/tab-counter-plus",
"bugs": {
"url": "https://github.com/Loirooriol/tab-counter-plus/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Loirooriol/tab-counter-plus.git"
},
"type": "module",
"devDependencies": {
"@eslint/js": "^10.0.1",
"eslint": "^10.0.3",
"globals": "^17.4.0",
"jest": "^30.3.0"
},
"scripts": {
"lint": "./node_modules/.bin/eslint ./src/ ./tests/",
"lint-src": "./node_modules/.bin/eslint ./src/",
"lint-tests": "./node_modules/.bin/eslint ./tests/",
"test": "jest"
}
}