-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
71 lines (71 loc) · 2.4 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
62
63
64
65
66
67
68
69
70
71
{
"name": "youtube-subscribe-addon",
"version": "0.1.4",
"description": "A Firefox Add-On to add a subscribe button on YouTube into the Awesome Bar",
"keywords": [
"YouTube",
"feeds",
"add-ons",
"web-extension"
],
"author": {
"name": "Chris Zuber",
"email": "[email protected]",
"url": "https://shgysk8zer0.github.io"
},
"contributors": [],
"homepage": "",
"license": "GPL-3.0",
"repository": {
"type": "git",
"url": "git+https://shgysk8zer0.github.com/youtube-subscribe-addon"
},
"bugs": {
"url": "https://shgysk8zer0.github.com/youtube-subscribe-addon/issues"
},
"engines": {
"npm": ">=3.5"
},
"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 README.md docs/ web-ext-artifacts/ '*.log*' -o",
"lint:js": "eslint .",
"lint:css": "stylelint 'css/*.css'",
"lint:ext": "web-ext lint -i node_modules/ rollup.config.js",
"browser": "npm run browser:stable",
"browser:stable": "web-ext run",
"browser:beta": "web-ext run -f beta",
"browser:nightly": "web-ext run -f nightly",
"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/",
"postinstall": "npm run git:fetch && npm run git:submodules"
},
"devDependencies": {
"eslint": "^3.19.0",
"eslint-plugin-async-await": "0.0.0",
"eslint-plugin-babel": "^4.1.2",
"stylelint": "^8.4.0",
"stylelint-config-recommended": "^1.0.0",
"stylelint-config-standard": "^17.0.0",
"web-ext": "^2.2.2"
},
"dependencies": {
"cssnano": "^3.10.0",
"postcss": "^5.2.14",
"postcss-cli": "^3.0.0-beta",
"postcss-load-config": "^1.2.0",
"postcss-cssnext": "^2.9.0",
"postcss-import": "^9.1.0",
"postcss-url": "^5.1.2",
"svg-sprite-generator": "0.0.1",
"rollup": "^0.50.0",
"rollup-plugin-uglify": "^2.0.1"
}
}