-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
57 lines (57 loc) · 2.4 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": "@oscsa/jsquarto",
"version": "1.0.6",
"description": "Generate JS package API reference documentation using Markdown and Quarto. JSquarto is designed as an alternative to JSDoc",
"repository": {
"type": "git",
"url": "https://github.com/Open-Science-Community-Saudi-Arabia/JSquarto"
},
"keywords": [],
"homepage": "https://jsquarto.netlify.app/",
"main": "index.js",
"scripts": {
"base:tsc": "ts-node-dev --transpile-only --project tsconfig.json",
"base:command": "npm run base:tsc -- ./src/scripts/command.ts",
"config:init": "npm run base:command -- --command=config:init",
"config:set": "npm run base:command -- --command=config:set",
"config:get": "npm run base:command -- --command=config:get",
"doc:generate": "npm run base:command -- --command=doc:generate",
"doc:preview": "npm run base:command -- --command=doc:preview",
"doc:clean": "npm run base:command -- --command=doc:clean",
"doc:serve": "npm run base:command -- --command=doc:serve",
"fix:all": "npm run base:command -- --command=fix:all",
"fix:crowdin_files": "npm run base:command -- --command=fix:crowdin_files",
"fix:localized_files": "npm run base:command -- --command=fix:localized_files",
"fix:duplicate_languages_ref": "npm run base:command -- --command=fix:duplicate_languages_ref",
"fix:fix_wrong_languages_ref": "npm run base:command -- --command=fix:fix_wrong_languages_ref",
"setup-quarto": "git clone https://github.com/quarto-dev/quarto-cli && cd quarto-cli && ./configure.sh",
"update-quarto": "cd quarto-cli && git pull",
"tsc": "tsc -b ./tsconfig.bin.json && ts-node-dev ./src/scripts/add_shebang.ts",
"release": "standard-version"
},
"bin": {
"jsq": "./bin/jsq.js"
},
"author": "",
"license": "ISC",
"dependencies": {
"acorn": "^8.11.3",
"cheerio": "^1.0.0-rc.12",
"fs": "^0.0.1-security",
"serve": "^14.2.3",
"ts-node-dev": "^2.0.0",
"uuid": "^9.0.1",
"winston": "^3.11.0",
"yaml": "^2.3.4"
},
"devDependencies": {
"@types/uuid": "^9.0.8",
"cz-conventional-changelog": "^3.3.0",
"standard-version": "^9.5.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}