forked from teddy-gustiaux/default-bookmark-folder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 2.78 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
{
"name": "default-bookmark-folder",
"version": "2.13.0",
"description": "WebExtension allowing you to choose the default bookmark location folder and quickly bookmark pages there via a dedicated icon.",
"main": "background.js",
"scripts": {
"lint:all": "eslint --config .eslintrc.json karma.conf.js src/**/*.js test/**/*.js",
"lint:file": "eslint --config .eslintrc.json",
"fix:all": "eslint --config .eslintrc.json karma.conf.js src/**/*.js test/**/*.js --fix",
"fix:file": "eslint --config .eslintrc.json --fix",
"start:firefox": "web-ext run --source-dir ./src/ --firefox=firefox --firefox-profile=dbf-firefox --start-url about:debugging",
"start:devedition": "web-ext run --source-dir ./src/ --firefox=firefoxdeveloperedition --firefox-profile=dbf-devedition --start-url about:debugging",
"start:nightly": "web-ext run --source-dir ./src/ --firefox=nightly --firefox-profile=dbf-nightly --start-url about:debugging",
"test": "karma start karma.conf.js",
"test:all": "karma start karma.conf.js",
"test:watch": "karma start karma.conf.js --auto-watch --no-single-run",
"deps:outdated": "ncu",
"deps:update": "ncu --upgrade",
"webext:lint": "web-ext lint --source-dir ./src/",
"webext:build": "web-ext build --source-dir ./src/ --overwrite-dest --artifacts-dir ./dist",
"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": {
"@babel/core": "7.11.1",
"@babel/polyfill": "7.10.4",
"@babel/preset-env": "7.11.0",
"babel-plugin-istanbul": "6.0.0",
"chai": "4.2.0",
"conventional-changelog-cli": "2.1.0",
"dirty-chai": "2.0.1",
"eslint": "7.7.0",
"eslint-config-airbnb-base": "14.2.0",
"eslint-config-prettier": "6.11.0",
"eslint-plugin-import": "2.22.0",
"eslint-plugin-prettier": "3.1.4",
"karma": "5.1.1",
"karma-babel-preprocessor": "8.0.1",
"karma-chai": "0.1.0",
"karma-coverage": "2.0.3",
"karma-dirty-chai": "2.0.0",
"karma-firefox-launcher": "1.3.0",
"karma-htmlfile-reporter": "0.3.8",
"karma-mocha": "2.0.1",
"karma-mocha-reporter": "2.2.5",
"mocha": "8.1.1",
"npm-check-updates": "7.1.1",
"nyc": "15.1.0",
"prettier": "2.0.5",
"sinon": "9.0.3",
"sinon-chrome": "3.0.1",
"web-ext": "5.0.0"
},
"dependencies": {}
}