-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
55 lines (55 loc) · 1.56 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
{
"name": "cookie-restrictions-strict-list",
"description": "A study that blocks tracking cookies from the strict list and the basic list, in two separate cohorts.",
"version": "3.0.0",
"author": "Mozilla",
"bugs": {
"url": ""
},
"dependencies": {
"shield-studies-addon-utils": "github:mozilla/shield-studies-addon-utils#5.2.1"
},
"devDependencies": {
"chai": "^4.1.2",
"eslint": "^5.15.1",
"eslint-plugin-import": "^2.5.0",
"eslint-plugin-json": "^1.4.0",
"eslint-plugin-mozilla": "^0.14.0",
"eslint-plugin-no-unsanitized": "^3.0.2",
"geckodriver": "^1.16.0",
"mocha": "^5.2.0",
"npm-run-all": "^4.1.1",
"selenium-webdriver": "^3.5.0",
"web-ext": "^2.7.0"
},
"engines": {
"node": ">=8.11.1"
},
"homepage": "",
"keywords": [
"firefox",
"mozilla",
"shield-study"
],
"license": "MPL-2.0",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/mozilla/cookie-restrictions-strict-list-study"
},
"scripts": {
"build": "web-ext build",
"bundle-utils": "copyStudyUtils src/privileged",
"eslint": "eslint . --ext jsm,js,json",
"lint": "npm-run-all lint:*",
"lint:eslint": "npm run eslint",
"lint:web-ext-lint": "web-ext lint",
"prebuild": "npm run bundle-utils",
"prestart": "npm run bundle-utils",
"prewatch": "npm run bundle-utils",
"sign": "echo 'TBD'",
"start": "web-ext run --no-reload",
"test": "ADDON_ZIP=./dist/cookie_restrictions_strict_list-2.1.zip mocha test/functional/ --bail",
"watch": "web-ext run"
}
}