-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
38 lines (38 loc) · 1.18 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
{
"name": "@duckduckgo/privacy-test-pages",
"description": "This project contains a collection of pages that are meant to be used for testing various privacy and security features of browsers and browser extensions.",
"main": "server.js",
"engines": {
"node": ">=16.0.0"
},
"scripts": {
"test": "npm run lint-js && npm run lint-html",
"lint-js": "eslint .",
"lint-html": "eslint **/*.html",
"start": "node server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/duckduckgo/privacy-test-pages.git"
},
"author": "Duck Duck Go, Inc.",
"bugs": {
"url": "https://github.com/duckduckgo/privacy-test-pages/issues"
},
"homepage": "https://github.com/duckduckgo/privacy-test-pages#readme",
"dependencies": {
"@duckduckgo/content-scope-scripts": "github:duckduckgo/content-scope-scripts#6.21.0",
"body-parser": "^1.20.1",
"express": "^4.19.2",
"node-cache": "^5.1.2",
"node-cmd": "^5.0.0",
"ws": "^8.13.0"
},
"devDependencies": {
"eslint": "^7.32.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-html": "^8.1.1",
"eslint-plugin-import": "^2.30.0",
"eslint-plugin-node": "^11.1.0"
}
}