-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.36 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
{
"name": "website-history-browser",
"type": "module",
"version": "1.5.0",
"description": "a WebExtension to browse your history per website",
"author": "maxlath",
"scripts": {
"auto-reload-extension": "web-ext run --firefox-profile=web-ext-tests --keep-profile-changes",
"build": "cp README.md extension && rollup -c && web-ext build",
"lint": "npm run lint:src && npm run lint:extension",
"lint:src": "eslint src",
"lint:src:fix": "eslint src --fix",
"lint:extension": "web-ext lint",
"postversion": "./scripts/postversion",
"prepare-publication": "./scripts/prepare_publication",
"publish": "web-ext sign -s extension -a web-ext-artifacts",
"watch": "rollup -c -w"
},
"dependencies": {
"lodash.debounce": "^4.0.8"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^17.1.0",
"@rollup/plugin-node-resolve": "^11.2.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.3.1",
"eslint-plugin-svelte3": "^3.1.2",
"rollup": "^2.41.4",
"rollup-plugin-css-only": "^3.1.0",
"rollup-plugin-notify": "^1.1.0",
"rollup-plugin-svelte": "^7.1.0",
"rollup-plugin-terser": "^7.0.2",
"svelte": "^3.35.0",
"web-ext": "^6.0.0"
},
"webExt": {
"sourceDir": "extension"
},
"license": "GPL-3.0"
}