-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 891 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 891 Bytes
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
{
"name": "hammerspoon2-docs",
"version": "1.0.0",
"description": "Documentation extraction for Hammerspoon 2 JavaScript API",
"private": true,
"scripts": {
"docs:extract": "node scripts/extract-docs.js",
"docs:generate": "npm run docs:extract && npm run docs:html && npm run docs:typescript",
"docs:html": "node scripts/generate-html.js",
"docs:typescript": "node scripts/generate-typescript.js",
"docs:coverage": "node scripts/docs-coverage.js",
"docs:test": "bash scripts/test-docs.sh",
"docs:clean": "rm -rf docs/json docs/html docs/api.json docs/hammerspoon.d.ts"
},
"keywords": [
"hammerspoon",
"documentation"
],
"author": "Chris Jones <cmsj@tenshu.net>",
"license": "MIT",
"devDependencies": {
"@highlightjs/cdn-assets": "^11.11.1",
"highlight.js": "^11.11.1",
"marked": "^17.0.1",
"nunjucks": "^3.2.4"
}
}