-
Notifications
You must be signed in to change notification settings - Fork 176
/
package.json
51 lines (51 loc) · 1.72 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
{
"name": "contain-facebook",
"version": "2.3.11",
"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",
"dev": "web-ext run -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.3.6",
"cross-env": "^5.2.1",
"eslint": "^4.19.1",
"eslint-plugin-no-unsanitized": "^2.0.2",
"fs-extra": "^8.1.0",
"mocha": "^5.2.0",
"nyc": "^15.1.0",
"psl": "^1.8.0",
"sinon": "^7.5.0",
"sinon-chai": "^3.7.0",
"webextensions-geckodriver": "^0.7.0",
"webextensions-jsdom": "^1.4.1"
},
"dependencies": {
"web-ext": "^6.7.0"
},
"volta": {
"node": "16.14.1",
"npm": "8.5.0"
}
}