-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.38 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.38 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
{
"name": "htest-html",
"version": "0.0.0",
"description": "Write tests directly in HTML, without any JS file being involved",
"keywords": [
"testing",
"unit-testing"
],
"homepage": "https://github.com/htest-dev/htest-html#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/htest-dev/htest-html.git"
},
"bugs": {
"url": "https://github.com/htest-dev/htest-html/issues"
},
"type": "module",
"main": "src/index.js",
"exports": {
".": {
"import": "./src/index.js"
},
"./compare": {
"import": "./src/compare.js"
},
"./content": {
"import": "./src/content.js"
}
},
"author": "Lea Verou",
"license": "MIT",
"scripts": {
"build:html": "npx @11ty/eleventy --config=_build/eleventy.js",
"watch:html": "npx @11ty/eleventy --config=_build/eleventy.js --serve --quiet",
"build:apidocs": "npx typedoc",
"watch:apidocs": "npx typedoc --watch --preserveWatchOutput",
"build": "npm run build:html && npm run build:apidocs",
"watch": "npm run watch:html & npm run watch:apidocs",
"release": "release-it"
},
"devDependencies": {
"@11ty/eleventy": "^3.0.0",
"markdown-it-anchor": "^9.2.0",
"markdown-it-attrs": "^4.3.1",
"prettier": "^3.5.3",
"prettier-plugin-brace-style": "^0.7.2",
"prettier-plugin-merge": "^0.7.3",
"prettier-plugin-space-before-function-paren": "^0.0.7",
"release-it": "^18.1.2",
"typedoc": "^0.28.0"
}
}