forked from mozilla/contain-facebook
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.24 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
{
"name": "contain-facebook",
"version": "2.0.3",
"description": "Facebook Container isolates your Facebook activity from the rest of your web activity in order to prevent Facebook from tracking you outside of the Facebook website via third party cookies. ",
"main": "background.js",
"scripts": {
"test": "eslint src test && npm run coverage",
"test-watch": "mocha test/setup.js test/**/*.test.js --watch",
"coverage": "nyc --reporter=html --reporter=text mocha test/setup.js test/**/*.test.js --timeout 60000",
"build": "npm test && web-ext build --overwrite-dest -s src"
},
"repository": {
"type": "git",
"url": "[email protected]:mozilla/contain-facebook.git"
},
"keywords": [
"addon",
"firefox",
"mozilla"
],
"author": "Luke Crouch",
"license": "MPL-2.0",
"bugs": {
"url": "https://github.com/mozilla/contain-facebook/issues"
},
"homepage": "https://github.com/mozilla/contain-facebook#readme",
"devDependencies": {
"chai": "^4.1.2",
"eslint": "^4.19.1",
"eslint-plugin-no-unsanitized": "^2.0.2",
"mocha": "^5.0.5",
"nyc": "^14.1.1",
"sinon": "^7.3.2",
"sinon-chai": "^3.0.0",
"webextensions-jsdom": "^0.15.2"
},
"dependencies": {
"web-ext": "^3.1.1"
}
}