-
Notifications
You must be signed in to change notification settings - Fork 49
/
package.json
51 lines (51 loc) · 1.63 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
{
"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 && cp node_modules/fast-text-encoding/text.min.js wallabagger/js/deps/text.min.js && cp node_modules/asmcrypto.js/asmcrypto.all.es5.min.js wallabagger/js/deps/asmcrypto.all.es5.min.js && cp node_modules/webcrypto-liner/build/webcrypto-liner.shim.min.js wallabagger/js/deps/webcrypto-liner.shim.min.js",
"lint": "eslint wallabagger/js/*.js",
"locales:sort": "sort-json -i -d=1 wallabagger/_locales/**/messages.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": "^6.0.1",
"eslint-plugin-import": "^2.31.0",
"sort-json": "^2.0.1",
"web-ext": "^8.3.0"
},
"dependencies": {
"fast-text-encoding": "^1.0.6",
"spectre.css": "^0.5.9",
"webcrypto-liner": "^1.4.2"
}
}