-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
65 lines (65 loc) · 1.59 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
58
59
60
61
62
63
64
65
{
"name": "htest.dev",
"version": "0.0.17",
"description": "",
"scripts": {
"test": "bin/htest.js tests/index.js",
"build:html": "npx @11ty/eleventy --config=_build/eleventy.js",
"watch:html": "npx @11ty/eleventy --config=_build/eleventy.js --watch",
"build": "npm run build:docs && npm run build:html",
"build:docs": "npx typedoc",
"watch:docs": "npx typedoc --watch",
"watch": "npm run watch:html",
"eslint": "npx eslint .",
"eslint:fix": "npx eslint . --fix",
"release": "release-it"
},
"type": "module",
"exports": {
".": {
"import": "./src/index.js"
},
"./check": {
"import": "./src/check.js"
},
"./map": {
"import": "./src/map.js"
},
"./env": {
"import": "./src/env/index.js"
}
},
"bin": {
"htest": "bin/htest.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/leaverou/htest.git"
},
"keywords": [],
"author": "Lea Verou",
"license": "MIT",
"bugs": {
"url": "https://github.com/leaverou/htest/issues"
},
"homepage": "https://htest.dev",
"devDependencies": {
"@11ty/eleventy": "^3.0.0-alpha.5",
"@11ty/eleventy-navigation": "^0.3.5",
"@stylistic/eslint-plugin": "latest",
"chalk": "^5.3.0",
"eleventy-plugin-toc": "^1.1.5",
"eslint": "latest",
"globals": "latest",
"markdown-it-anchor": "^8.6.7",
"markdown-it-attrs": "^4.1.6",
"release-it": "latest",
"typedoc": "^0.25.12"
},
"dependencies": {
"diff": "^7.0.0",
"glob": "^10.3.10",
"log-update": "^6.0.0",
"oo-ascii-tree": "^1.91.0"
}
}