forked from mojaloop/documentation
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.67 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 2.67 KB
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "documentation",
"version": "11.3.2",
"description": "Mojaloop Documentation GitBook Project",
"dependencies": {
"express": "4.17.1",
"gitbook-cli": "2.3.2",
"gitbook-plugin-back-to-top-button": "0.1.4",
"gitbook-plugin-changelog": "1.0.1",
"gitbook-plugin-collapsible-chapters": "0.1.8",
"gitbook-plugin-editlink": "1.0.2",
"gitbook-plugin-fontsettings": "2.0.0",
"gitbook-plugin-include": "0.1.0",
"gitbook-plugin-insert-logo": "0.1.5",
"gitbook-plugin-page-toc": "1.1.1",
"gitbook-plugin-plantuml-svg": "1.0.1",
"gitbook-plugin-swagger": "0.2.0",
"gitbook-plugin-theme-api": "1.1.2",
"gitbook-plugin-uml": "1.0.1",
"gitbook-plugin-variables": "1.1.0",
"svgexport": "0.4.1"
},
"devDependencies": {
"directory-tree": "^2.2.5",
"got": "^11.8.0",
"husky": "^4.2.5",
"license-checker": "25.0.1",
"node-plantuml": "^0.5.0",
"npm-audit-resolver": "2.2.1",
"npm-check-updates": "7.0.2",
"plantuml-encoder": "^1.4.0",
"strip-comments": "^2.0.1",
"svgo": "^1.3.2"
},
"scripts": {
"audit:check": "SHELL=sh check-audit",
"audit:resolve": "SHELL=sh resolve-audit",
"build:plantuml:all": "./scripts/_build_plantuml_all.sh",
"build:plantuml:diff": "./scripts/_build_plantuml_diff.sh",
"dep:check": "npx ncu -e 2",
"dep:update": "npx ncu -u",
"docker:build": "docker build --no-cache -t mojaloop/documentation .",
"docker:push": "docker push mojaloop/documentation",
"docker:run": "docker run --rm -it --name mojadoc -p 8989:8989 mojaloop/documentation",
"express:run": "node index.js",
"gitbook:build": "gitbook build",
"gitbook:export:pdf": "gitbook pdf ./",
"gitbook:install": "gitbook install",
"gitbook:serve": "gitbook serve --port 8989",
"gitbook:serveNoReload": "gitbook serve --no-live --port 8989",
"license:check": "npm run license:list -- --failOn `cat .licensebanned | grep '^[^#;]' | awk 'BEGIN { ORS=\"\" } { print p$0\";\"; } END { print \n }'`",
"license:list": "license-checker . --excludePackages `cat .licenseignore | grep '^[^#;]' | awk 'BEGIN { ORS=\"\" } { print p$0\";\"; } END { print \n }'` --production --csv",
"run": "npm run gitbook:serve",
"start": "npm run gitbook:serveNoReload"
},
"husky": {
"hooks": {
"pre-commit": "npm run build:plantuml:diff",
"post-commit": "git update-index --again"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/mojaloop/documentation.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/mojaloop/documentation/issues"
},
"homepage": "https://github.com/mojaloop/documentation#readme"
}