-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.42 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": "esti-mate",
"version": "1.6.1",
"description": "Your estimate best friend",
"main": "src/index.js",
"repository": "[email protected]:antistatique/esti-mate.git",
"author": "Antistatique",
"license": "MIT",
"scripts": {
"start": "web-ext run",
"build": "rm -rf ./web-ext-artifacts && web-ext build --ignore-files package.json README.md yarn.lock doc && cp -rf ./web-ext-artifacts/*.* ./ && rm -rf ./web-ext-artifacts"
},
"eslintConfig": {
"extends": "eslint-config-airbnb",
"parser": "babel-eslint",
"parserOptions": {
"ecmaVersion": 6,
"ecmaFeatures": {
"jsx": "true",
"spread": "true"
}
},
"env": {
"browser": "true",
"es6": "true"
},
"rules": {
"arrow-parens": [
2,
"as-needed",
{
"requireForBlockBody": true
}
],
"arrow-body-style": 0,
"camelcase": 0,
"max-len": [
2,
{
"code": 80
}
],
"global-require": 0,
"no-undef": 0,
"no-unused-vars": 0,
"class-methods-use-this": 0
}
},
"devDependencies": {
"babel-eslint": "^8.2.5",
"eslint": "^5.0.1",
"eslint-config-airbnb": "^17.0.0",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.10.0",
"web-ext": "^7.3.1"
},
"dependencies": {
"webextension-polyfill": "^0.8.0"
}
}