forked from mozilla/contain-facebook
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.61 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.61 KB
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
{
"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 && npm run test-functional",
"test-watch": "mocha --reporter=progress test/setup.js test/features/*.test.js --watch",
"test-functional": "mocha --reporter=progress test/functional/setup.js test/functional/*.test.js --timeout 60000",
"test-functional-dev": "cross-env NODE_ENV=development npm run test-functional",
"coverage": "nyc --reporter=html --reporter=text mocha --reporter=progress test/setup.js test/features/*.test.js --timeout 60000",
"build": "npm test && web-ext build --overwrite-dest -s src"
},
"repository": {
"type": "git",
"url": "git@github.com: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",
"cross-env": "^5.2.0",
"eslint": "^4.19.1",
"eslint-plugin-no-unsanitized": "^2.0.2",
"fs-extra": "^8.1.0",
"mocha": "^5.0.5",
"nyc": "^14.1.1",
"sinon": "^7.3.2",
"sinon-chai": "^3.0.0",
"webextensions-geckodriver": "^0.6.1",
"webextensions-jsdom": "^0.15.2"
},
"dependencies": {
"web-ext": "^3.1.1"
}
}