forked from shgysk8zer0/awesome-rss
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 2.04 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
61
{
"name": "awesome-rss-beta",
"version": "1.3.6",
"description": "Puts an RSS/Atom subscribe button back in URL bar",
"keywords": [
"WebExtension",
"Firefox",
"RSS",
"Subscribe"
],
"author": {
"name": "Chris Zuber",
"email": "[email protected]",
"url": "https://shgysk8zer0.github.io"
},
"contributors": [
{
"name": "Michal Stanke",
"url": "https://michal.stanke.cz/"
}
],
"homepage": "https://addons.mozilla.org/en-US/firefox/addon/awesome-rss-beta/",
"license": "GPL-3.0",
"repository": {
"type": "git",
"url": "https://github.com/park0/awesome-rss"
},
"bugs": {
"url": "https://github.com/shgysk8zer0/awesome-rss/issues"
},
"engines": {
"npm": ">=3.10"
},
"devDependencies": {
"eslint": "^4.19.1",
"eslint-plugin-async-await": "0.0.0",
"stylelint": "^8.1.1",
"stylelint-config-recommended": "^1.0.0",
"stylelint-config-standard": "^17.0.0",
"svg-sprite-generator": "0.0.7",
"web-ext": "^2.9.1"
},
"scripts": {
"git:fetch": "git fetch --prune --tags",
"git:submodules": "git submodule update --init --recursive",
"build": "npm run build:all && npm run build:ext",
"build:all": "npm run build:icons",
"build:css": "postcss css/styles/index.css -o css/styles/index.min.css -u postcss-import postcss-cssnext cssnano -m",
"build:js": "rollup -c",
"build:icons": "svg-sprite-generate -c img/icons.csv -o icons.svg",
"build:ext": "web-ext build -i .git/ node_modules/ screenshot.png package.json rollup.config.js img/ docs/ web-ext-artifacts/ '*.log*' -o",
"lint:js": "eslint .",
"lint:css": "stylelint 'css/*.css'",
"lint:ext": "web-ext lint -i node_modules/ img/ rollup.config.js",
"start": "web-ext run",
"test": "npm run lint:js && npm run lint:css && npm run lint:ext",
"upload": "web-ext sign -i node_modules/ img/ rollup.config.js screenshot.png web-ext-artifacts/",
"preinstall": "git submodule update --init --recursive",
"postinstall": "npm run git:fetch && npm run build:all"
}
}