-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
66 lines (66 loc) · 1.65 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
{
"name": "Global-Consent-Manager",
"version": "1.5.0",
"description": "A browser extension for managing GDPR consent dialogs across websites",
"repository": "SociallyCompute/Global-Consent-Manager",
"license": "MIT",
"scripts": {
"build": "npm test && web-ext build",
"lint": "eslint src/*.js && web-ext lint",
"list": "mocha --timeout 90000",
"start": "web-ext run",
"test": "npm run lint && npm run list"
},
"dependencies": {
"chai": "^4.2.0",
"eslint": "^5.16.0",
"eslint-config-google": "^0.9.1",
"geckodriver": "^1.16.2",
"mocha": "^5.2.0",
"selenium-webdriver": "^4.0.0-alpha.4",
"web-ext": "^3.1.1"
},
"eslintConfig": {
"extends": "google",
"parserOptions": {
"ecmaVersion": 2017
},
"env": {
"browser": true,
"mocha": true,
"node": true,
"webextensions": true
},
"globals": {
"getSite": true,
"sites": true
},
"rules": {
"indent": [
"error",
4
],
"max-len": [
"error",
{
"code": 120,
"ignoreStrings": true
}
],
"quotes": 0,
"require-jsdoc": 0,
"valid-jsdoc": 0
}
},
"webExt": {
"artifactsDir": ".",
"build": {
"overwriteDest": true
},
"ignoreFiles": [
"*.md",
"package*.json",
"test"
]
}
}