forked from wallabag/wallabagger
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.7 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.7 KB
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
{
"name": "wallabagger",
"version": "1.1.1",
"description": "Web extension for Wallabag v2",
"main": "index.js",
"browserslist": [
"Firefox >= 52",
"Chrome > 60",
"Edge > 14"
],
"scripts": {
"deps:update": "cp node_modules/spectre.css/dist/spectre.min.css wallabagger/css/spectre.min.css && cp node_modules/spectre.css/dist/spectre-exp.min.css wallabagger/css/spectre-exp.min.css",
"lint": "eslint wallabagger/js/*",
"locales:sort": "sort-json -i -d=1 wallabagger/_locales/**/messages.json",
"manifest": "npm run manifest:firefox && npm run manifest:chrome",
"manifest:firefox": "wemf --browser firefox --validate wallabagger/manifest.json",
"manifest:firefox:update": "wemf --browser firefox wallabagger/manifest.json -U",
"manifest:chrome": "wemf --browser chrome --validate wallabagger/manifest.json"
},
"webextension": {
"name": "Wallabagger",
"applications": {
"gecko": {
"strict_min_version": "52.0"
}
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/wallabag/wallabagger.git"
},
"keywords": [
"wallabag",
"extension"
],
"author": "wallabagger",
"license": "MIT",
"bugs": {
"url": "https://github.com/wallabag/wallabagger/issues"
},
"homepage": "https://github.com/wallabag/wallabagger#readme",
"devDependencies": {
"eslint": "^7.32.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-compat": "^4.0.2",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-standard": "^5.0.0",
"sort-json": "^2.0.1",
"wemf": "^1.3.0"
},
"dependencies": {
"spectre.css": "^0.5.9"
}
}