-
-
Notifications
You must be signed in to change notification settings - Fork 208
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 2.15 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 2.15 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
46
47
48
49
50
51
52
53
{
"name": "almanac.httparchive.org",
"version": "0.0.1",
"description": "HTTP Archive's annual 'State of the Web' report made by the web community.",
"main": "index.html",
"repository": {
"type": "git",
"url": "git+https://github.com/HTTPArchive/almanac.httparchive.org.git"
},
"author": "Rick Viscomi",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/HTTPArchive/almanac.httparchive.org/issues"
},
"homepage": "https://github.com/HTTPArchive/almanac.httparchive.org#readme",
"scripts": {
"test": "node ./tools/test",
"generate": "node ./tools/generate",
"figure-images": "node ./tools/generate/generate_figure_images",
"watch": "node ./tools/generate/chapter_watcher",
"ebooks": "node ./tools/generate/generate_ebook_pdfs",
"deploy": "./tools/scripts/deploy.sh",
"dev": "source .venv/bin/activate && npm run start",
"lint": "run-script-os",
"lint:darwin:linux": "docker container run -it --rm -v \"$PWD/..\":/app -w /app/src --entrypoint=./tools/scripts/run_linter_locally.sh ghcr.io/super-linter/super-linter:slim-latest",
"lint:win32": "docker container run --rm -v \"%cd%\\..\":/app -w /app/src --entrypoint=./tools/scripts/run_linter_locally.sh ghcr.io/super-linter/super-linter:slim-latest",
"pytest": "pytest --cov server --cov-fail-under=100 --cov-report=term-missing -s",
"stage": "./tools/scripts/deploy.sh -n",
"start": "run-script-os",
"start:darwin:linux": "./tools/scripts/run_and_test_website.sh -d",
"start:win32": "call tools/scripts/run_and_test_website.bat",
"stop": "run-script-os",
"stop:darwin:linux": "./tools/scripts/stop_website.sh",
"stop:win32": "call tools/scripts/stop_website.bat",
"timestamps": "node ./tools/generate/generate_timestamps"
},
"devDependencies": {
"ejs": "5.0.1",
"fs-extra": "11.3.4",
"jsdom": "28.1.0",
"node-fetch": "3.3.2",
"node-watch": "0.7.4",
"prettier": "3.8.0",
"puppeteer": "24.39.1",
"rainbow-code": "2.1.7",
"recursive-readdir": "2.2.3",
"run-script-os": "1.1.6",
"showdown": "2.1.0",
"smartypants": "0.2.2",
"web-vitals": "5.1.0",
"xml-js": "1.6.11"
}
}