forked from tinymce/tinymce-docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.18 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
{
"name": "tinymce-docs",
"version": "2.0.0",
"description": "TinyMCE documentation",
"repository": "[email protected]:tinymce/tinymce-docs.git",
"bugs": {
"url": "https://github.com/tinymce/tinymce-docs/issues"
},
"homepage": "https://www.tiny.cloud/docs/",
"scripts": {
"build": "./-scripts/api-reference.sh",
"build-local-ref": "./-scripts/api-reference-local.sh",
"generate-site": "./-scripts/generate-site.sh",
"nodemon-dev": "nodemon --exec yarn generate-site ./antora-playbook-dev.yml",
"server": "http-server build/site/ --port 4000",
"serve": "npm-run-all -p nodemon-dev server"
},
"author": "Tiny Technologies Inc",
"license": "CC-BY-NC-SA-3.0",
"nodemonConfig": {
"execMap": {
"build": "antora ./antora-playbook-dev.yml"
},
"watch": [
"modules/*"
],
"delay": "2500ms",
"ext": "*"
},
"devDependencies": {
"@antora/cli": "^3.0.1",
"@antora/site-generator-default": "^3.0.1",
"@tinymce/antora-extension-livedemos": "^0.1.0",
"@tinymce/moxiedoc": "^0.2.1",
"dotenv": "^16.0.0",
"ecstatic": "^4.1.4",
"http-server": "^0.12.3",
"nodemon": "^2.0.7",
"npm-run-all": "^4.1.5"
}
}