-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
53 lines (53 loc) · 1.8 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
{
"name": "time-capsule",
"type": "module",
"version": "2.4.0",
"description": "A reboot of the awesome Browse Periodically",
"main": "index.js",
"scripts": {
"auto-reload-extension": "web-ext run --firefox-profile=web-ext-tests --keep-profile-changes",
"test": "mocha ./tests",
"build": "rollup -c",
"build-icons": "./scripts/build-icons",
"watch": "rollup -c -w",
"lint": "npm run lint:src && npm run lint:extension",
"lint:src": "eslint src",
"lint:src:fix": "eslint src --fix",
"lint:extension": "web-ext lint",
"sign": "echo 'For private extension only' && npm run lint:extension && web-ext sign -s extension -a web-ext-artifacts",
"update-toc": "npx doctoc README.md",
"postversion": "./scripts/postversion",
"prepare-publication": "./scripts/prepare_publication",
"get-repository-zip": "./scripts/get_repository_zip"
},
"author": "maxlath",
"license": "AGPL-3.0",
"devDependencies": {
"@rollup/plugin-commonjs": "^20.0.0",
"@rollup/plugin-node-resolve": "^13.0.4",
"doctoc": "^1.3.0",
"eslint-config-standard": "^7.1.0",
"eslint-plugin-import": "^2.24.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^3.4.2",
"eslint-plugin-standard": "^5.0.0",
"eslint-plugin-svelte3": "^3.2.0",
"git-hooks": "^1.1.8",
"mocha": "^10.1.0",
"rollup": "^2.56.2",
"rollup-plugin-css-only": "^3.1.0",
"rollup-plugin-notify": "github:aredridel/rollup-plugin-notify#510ae8751b98e41698885cae1c2af02541daacc0",
"rollup-plugin-svelte": "^7.1.0",
"rollup-plugin-terser": "^7.0.2",
"should": "^13.2.3",
"svelte": "^3.53.1",
"web-ext": "^7.8.0",
"webextension-polyfill": "^0.10.0"
},
"webExt": {
"sourceDir": "extension"
},
"dependencies": {
"lodash.debounce": "^4.0.8"
}
}