-
Notifications
You must be signed in to change notification settings - Fork 387
/
package.json
40 lines (40 loc) · 1.27 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
{
"name": "loopback.io-workflow-scripts",
"version": "1.0.0",
"description": "This file: Node-dependant workflow scripts for the jekyll-based site",
"private": true,
"scripts": {
"build": "npm run fetch-blog && npm run fetch-readmes && bundle exec jekyll build",
"postbuild": "npm run sitemap-transform",
"start": "bundle exec jekyll serve --incremental",
"fetch-blog": "./update-blog.sh",
"fetch-readmes": "./update-readmes.sh --repos=./_data --out=./_includes/readmes && ./update-community-readmes.sh",
"lint-readmes": "markdownlint _includes/readmes/",
"postinstall": "npm run swagger-ui && npm run copydocs",
"swagger-ui": "node ./api-explorer/upgrade-swagger-ui.js",
"copydocs": "node update-lb4-docs.js",
"sitemap-transform": "node sitemap.js"
},
"engines": {
"node": ">=22.11.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/loopbackio/loopback.io.git"
},
"devDependencies": {
"@loopback/docs": "latest",
"chalk": "^5.3.0",
"fs-extra": "^11.2.0",
"ibm-watson": "^9.1.0",
"markdownlint-cli": "^0.42.0",
"retry": "^0.13.1",
"swagger-ui-dist": "^5.18.2",
"xml2js": "^0.6.2"
},
"license": "MIT",
"author": "IBM Corp.",
"dependencies": {
"js-yaml": "^4.1.0"
}
}