-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
51 lines (51 loc) · 1.87 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
{
"name": "default-bookmark-folder",
"version": "4.0.0",
"description": "WebExtension allowing you to choose the default bookmark location folder and quickly bookmark pages there via a dedicated icon.",
"main": "background.js",
"type": "module",
"scripts": {
"lint:all": "eslint --config .eslintrc.json src/**/*.js scripts/**/*.js",
"lint:file": "eslint --config .eslintrc.json",
"fix:all": "eslint --config .eslintrc.json src/**/*.js scripts/**/*.js --fix",
"fix:file": "eslint --config .eslintrc.json --fix",
"start:firefox": "node ./scripts/start-browser.js firefox",
"start:deved": "node ./scripts/start-browser.js deved",
"start:nightly": "node ./scripts/start-browser.js nightly",
"deps:outdated": "ncu",
"deps:update": "ncu --upgrade",
"webext:lint:firefox": "node ./scripts/lint-extension.js firefox",
"webext:build:debug:firefox": "node ./scripts/build-extension.js firefox debug",
"webext:build:firefox": "node ./scripts/build-extension.js firefox",
"webext:changelog": "conventional-changelog -p angular -i CHANGELOG.md -s"
},
"repository": {
"type": "git",
"url": "git+https://github.com/teddy-gustiaux/default-bookmark-folder.git"
},
"keywords": [
"webextension",
"javascript",
"firefox",
"browser-extension",
"firefox-extension",
"bookmarks"
],
"author": "Teddy Gustiaux",
"license": "MIT",
"bugs": {
"url": "https://github.com/teddy-gustiaux/default-bookmark-folder/issues"
},
"homepage": "https://github.com/teddy-gustiaux/default-bookmark-folder#readme",
"devDependencies": {
"conventional-changelog-cli": "4.1.0",
"eslint": "8.56.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-prettier": "5.1.3",
"lodash.merge": "4.6.2",
"npm-check-updates": "16.14.15",
"prettier": "3.2.5",
"web-ext": "7.11.0"
}
}