-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
75 lines (75 loc) · 2.93 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
72
73
74
75
{
"private": true,
"name": "youtube-rss-finder",
"version": "1.3.0",
"description": "Helps you find the RSS feed of a YouTube channel.",
"main": "background.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "karma start karma.conf.js",
"test:all": "karma start karma.conf.js",
"test:watch": "karma start karma.conf.js --auto-watch --no-single-run",
"lint": "eslint --config .eslintrc.json",
"lint:src": "eslint --config .eslintrc.json src/**/*.js",
"lint:test": "eslint --config .eslintrc.json test/**/*.js",
"lint:all": "eslint --config .eslintrc.json . --ext .js",
"fix": "eslint --config .eslintrc.json --fix",
"fix:src": "eslint --config .eslintrc.json src/**/*.js --fix",
"fix:test": "eslint --config .eslintrc.json test/**/*.js --fix",
"fix:all": "eslint --config .eslintrc.json **/*.js --fix",
"fix:dry": "eslint --config .eslintrc.json --fix-dry-run",
"firefox": "web-ext run --source-dir ./src/ --firefox=firefox --firefox-profile=yrf-firefox --start-url about:debugging",
"firefox:dev": "web-ext run --source-dir ./src/ --firefox=firefoxdeveloperedition --firefox-profile=yrf-devedition --start-url about:debugging",
"firefox:nightly": "web-ext run --source-dir ./src/ --firefox=nightly --firefox-profile=yrf-nightly --start-url about:debugging",
"build:changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
"build:lint": "web-ext lint --source-dir ./src/",
"build:firefox": "web-ext build --source-dir ./src/ --overwrite-dest --artifacts-dir ./dist",
"codecov": "codecov"
},
"repository": {
"type": "git",
"url": "git+https://github.com/teddy-gustiaux/youtube-rss-finder.git"
},
"author": "Teddy Gustiaux",
"license": "MIT",
"bugs": {
"url": "https://github.com/teddy-gustiaux/youtube-rss-finder/issues"
},
"homepage": "https://github.com/teddy-gustiaux/youtube-rss-finder#readme",
"devDependencies": {
"@babel/core": "7.6.2",
"@babel/plugin-transform-async-to-generator": "7.5.0",
"@babel/polyfill": "7.6.0",
"@babel/preset-env": "7.6.2",
"babel-plugin-istanbul": "5.2.0",
"chai": "4.2.0",
"codecov": "3.6.5",
"conventional-changelog-cli": "2.0.23",
"dirty-chai": "2.0.1",
"eslint": "6.5.1",
"eslint-config-airbnb-base": "14.0.0",
"eslint-config-prettier": "6.4.0",
"eslint-plugin-import": "2.18.2",
"eslint-plugin-prettier": "3.1.1",
"karma": "4.3.0",
"karma-babel-preprocessor": "8.0.1",
"karma-chai": "0.1.0",
"karma-coverage": "2.0.1",
"karma-dirty-chai": "2.0.0",
"karma-firefox-launcher": "1.2.0",
"karma-htmlfile-reporter": "0.3.8",
"karma-mocha": "1.3.0",
"karma-mocha-reporter": "2.2.5",
"karma-sinon-chai": "2.0.2",
"mocha": "6.2.1",
"nyc": "14.1.1",
"prettier": "1.18.2",
"sinon": "7.5.0",
"sinon-chai": "3.3.0",
"sinon-chrome": "3.0.1",
"web-ext": "3.2.0",
"webextension-polyfill": "0.5.0"
}
}