-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
37 lines (37 loc) · 1.13 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
{
"name": "qa-test-pages",
"version": "1.0.0",
"description": "Test pages for manual QA",
"scripts": {
"lint": "npx standard && npx linthtml **/*.html *.html",
"lint:js": "npx standard",
"lint:js:fix": "npx standard --fix",
"lint:html": "npx linthtml **/*.html *.html",
"mkcert": "mkcert -cert-file cert.pem -key-file key.pem \"*.bravesoftware.com\" \"*.brave.software\"",
"serve": "node test/serve.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/brave-experiments/qa-test-pages.git"
},
"author": "Peter Snyder <pes@brave.com>",
"license": "ISC",
"bugs": {
"url": "https://github.com/brave-experiments/qa-test-pages/issues"
},
"homepage": "https://github.com/brave-experiments/qa-test-pages#readme",
"devDependencies": {
"@linthtml/linthtml": "^0.4.2",
"commander": "11.1.0",
"http-server": "^14.1.1",
"standard": "^16.0.3"
},
"standard": {
"ignore": [
"**/static_js*.js",
"static/js/libs/*",
"fingerprinting/static/js/workers/fingerprinting-farbling.js",
"static/js/service-workers/fingerprinting-farbling.js"
]
}
}