-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.35 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
{
"name": "static-docs",
"version": "0.5.1",
"description": "A static documentation site generator. Useful for integration with GitHub pages.",
"main": "dist/esm/index.js",
"type": "module",
"scripts": {
"build": "npm run generate:template && tsc",
"serve": "npm run build && node ./server.js",
"generate:local": "node ./build/gh-pages.js",
"generate:gh-pages": "node ./build/gh-pages.js",
"generate:template": "node ./build/generate-export-files",
"test": "npm run build && npm run generate:local",
"test:diff": "git update-index --refresh && git diff-index --quiet HEAD -- || npm run test:diff:error",
"test:diff:error": "echo \"Untracked files exist, try running npm prepare to identify the culprit.\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/janechu/static-docs.git"
},
"keywords": [
"documentation",
"static",
"site",
"markdown"
],
"author": "Jane Chu",
"license": "MIT",
"bugs": {
"url": "https://github.com/janechu/static-docs/issues"
},
"homepage": "https://github.com/janechu/static-docs#readme",
"devDependencies": {
"@types/marked": "^4.0.8",
"@types/node": "^18.11.18",
"express": "^4.18.2",
"typescript": "^4.9.4"
},
"dependencies": {
"fs-extra": "^11.1.0",
"lodash-es": "^4.17.21",
"marked": "^4.2.5"
}
}