-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.84 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
52
53
54
55
56
57
{
"name": "bugs.jqueryui.com",
"version": "0.0.1",
"description": "Static archive of the old bugs.jqueryui.com trac site, built with eleventy.",
"type": "module",
"scripts": {
"clean": "rimraf _site/",
"build": "npx @11ty/eleventy",
"postbuild": "npm run searchindex",
"start": "npm run clean && cross-env NODE_ENV=development npx @11ty/eleventy --serve --quiet",
"debug": "npm run clean && cross-env NODE_ENV=development DEBUG=Eleventy* npx @11ty/eleventy",
"debugstart": "npm run clean && cross-env NODE_ENV=development DEBUG=Eleventy* npx @11ty/eleventy --serve --quiet",
"benchmark": "npm run clean && cross-env NODE_ENV=development DEBUG=Eleventy:Benchmark* npx @11ty/eleventy",
"searchindex": "node pagefind/generate.js",
"testbuild": "npm run clean && cross-env NODE_ENV=development npx @11ty/eleventy && npm run searchindex"
},
"repository": {
"type": "git",
"url": "git://github.com/jquery/bugs.jqueryui.com.git"
},
"keywords": [
"jquery",
"bugs",
"trac",
"archive"
],
"author": {
"name": "Timmy Willison",
"email": "[email protected]",
"url": "https://timmywil.com/"
},
"license": "MIT",
"engines": {
"node": ">=14"
},
"bugs": {
"url": "https://github.com/jquery/bugs.jqueryui.com/issues"
},
"homepage": "https://github.com/jquery/bugs.jqueryui.com#readme",
"devDependencies": {
"@11ty/eleventy": "github:11ty/eleventy",
"@11ty/eleventy-img": "^4.0.2",
"@11ty/eleventy-navigation": "^0.3.5",
"@11ty/eleventy-plugin-bundle": "^3.0.0",
"@11ty/eleventy-plugin-syntaxhighlight": "^5.0.0",
"clean-css": "^5.3.3",
"cross-env": "^7.0.3",
"eleventy-favicon": "^1.1.3",
"luxon": "^3.5.0",
"pagefind": "^1.1.1",
"prettier": "^3.3.3",
"rimraf": "^6.0.1"
},
"overrides": {
"sharp": "^0.32.1"
}
}