-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
60 lines (60 loc) · 2.13 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
{
"name": "search-bookmarks-history-and-tabs",
"version": "1.11.0",
"description": "Browser extension to (fuzzy) search and navigate bookmarks, history and open tabs.",
"main": "index.js",
"type": "module",
"dependencies": {
"@leeoniya/ufuzzy": "^1.0.18",
"@yaireo/tagify": "^4.33.1",
"js-yaml": "^4.1.0",
"mark.js": "^8.11.1"
},
"devDependencies": {
"cypress": "^14.0.0",
"cypress-fail-on-console-error": "^5.1.1",
"eslint": "^9.18.0",
"eslint-plugin-cypress": "^4.1.0",
"fs-extra": "^11.3.0",
"live-server": "^1.2.2"
},
"scripts": {
"clean": "node bin/clean.js",
"build": "npm run clean && npm run update-libs && npm run update-manifests && npm run create-dist && npm run size",
"update-libs": "bash bin/updateLibs.sh",
"create-dist": "bash bin/createDist.sh",
"update-manifests": "node bin/updateManifests.js",
"test": "npm run e2e",
"e2e": "cypress run --config-file=cypress.config.mjs --spec 'cypress/e2e/**/*'",
"e2e-all": "npm run e2e-chrome && npm run e2e-firefox && npm run e2e-edge",
"e2e-chrome": "cypress run --config-file=cypress.config.mjs --browser chrome --headed --spec 'cypress/e2e/**/*'",
"e2e-firefox": "cypress run --config-file=cypress.config.mjs --browser firefox --headed --spec 'cypress/e2e/**/*'",
"e2e-edge": "cypress run --config-file=cypress.config.mjs --browser edge --headed --spec 'cypress/e2e/**/*'",
"lint": "npm run eslint",
"eslint": "eslint ./popup/js/",
"start": "live-server --open=./popup/",
"cypress-info": "cypress info",
"cypress": "cypress open --config-file=cypress.config.mjs",
"size": "du -hc ./dist/chrome/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Fannon/search-tabs-bookmarks-and-history.git"
},
"keywords": [
"chrome",
"extension",
"search",
"fuzzy",
"search",
"history",
"bookmarks",
"tabs"
],
"author": "Simon Heimler",
"license": "MIT",
"bugs": {
"url": "https://github.com/Fannon/search-tabs-bookmarks-and-history/issues"
},
"homepage": "https://github.com/Fannon/search-tabs-bookmarks-and-history#readme"
}