forked from loopbackio/loopback.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.23 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
{
"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-readmes && bundle exec jekyll build",
"postbuild": "npm run sitemap-transform",
"start": "bundle exec jekyll serve --incremental",
"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": ">=10"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Strongloop/loopback.io.git"
},
"devDependencies": {
"@loopback/docs": "latest",
"chalk": "^4.1.0",
"fs-extra": "^9.0.1",
"ibm-watson": "^5.6.2",
"markdownlint-cli": "github:sequoia/markdownlint-cli",
"retry": "^0.12.0",
"swagger-ui-dist": "^3.32.4",
"xml2js": "^0.4.23"
},
"license": "MIT",
"author": "IBM Corp.",
"dependencies": {
"js-yaml": "^3.14.0"
}
}