-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
64 lines (64 loc) · 1.46 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
{
"name": "youquachoo",
"version": "1.0.0",
"description": "Switching quality of YouTube video to pre-selected by you",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "find . -name '.DS_Store' -type f -delete && rm -rf youquachoo.zip youquachoo && zip youquachoo.zip -r . -x $(more .zipignore)"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AleshaOleg/youquachoo.git"
},
"author": "Oleh Aloshkin",
"license": "MIT",
"bugs": {
"url": "https://github.com/AleshaOleg/youquachoo/issues"
},
"homepage": "https://github.com/AleshaOleg/youquachoo#readme",
"eslintConfig": {
"env": {
"browser": true,
"es6": true,
"webextensions": true
},
"extends": [
"airbnb-base"
],
"globals": {
"Atomics": "readonly",
"SharedArrayBuffer": "readonly"
},
"parserOptions": {
"ecmaVersion": 2018
},
"rules": {
"arrow-parens": [
2,
"as-needed"
],
"semi": [
2,
"never"
],
"prefer-destructuring": [
2,
{
"object": true,
"array": false
}
],
"newline-per-chained-call": 0,
"prefer-promise-reject-errors": 0
}
},
"eslintIgnore": [
"popup/sanitizer.js"
],
"devDependencies": {
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-plugin-import": "^2.20.2"
}
}