-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
104 lines (104 loc) · 3.08 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "@micro-os-plus/web-jekyll",
"version": "0.0.0",
"description": "The complete Jekyll source for the µOS++ IIIe web site",
"main": "",
"scripts": {
"postversion": "git push origin --all && git push origin --tags"
},
"repository": {
"type": "git",
"url": "https://github.com/micro-os-plus/web-jekyll.git"
},
"homepage": "https://github.com/micro-os-plus/web-jekyll",
"bugs": {
"url": "https://github.com/micro-os-plus/web-jekyll/issues"
},
"keywords": [
"xpack",
"c++",
"micro-os-plus"
],
"author": {
"name": "Liviu Ionescu",
"email": "ilg@livius.net",
"url": "https://github.com/ilg-ul"
},
"license": "MIT",
"config": {},
"bundleDependencies": [],
"devDependencies": {
"del-cli": "^5.0.0",
"open-cli": "^7.2.0"
},
"xpack": {
"minimumXpmRequired": "0.16.2",
"dependencies": {},
"$dependenciesUrls": [
"https://github.com/xpack-dev-tools/",
"https://github.com/micro-os-plus/"
],
"devDependencies": {
"@micro-os-plus/build-helper": "github:micro-os-plus/build-helper-xpack#xpack-develop",
"@xpack-3rd-party/doxygen-awesome-css": "^2.2.0-1"
},
"properties": {
},
"actions": {
"npm-install": "npm install",
"npm-pack": "npm pack",
"npm-version-patch": "npm version patch",
"npm-version-minor": "npm version minor",
"git-log": "git log --pretty='%cd * %h %s' --date=short",
"install": [
"npm install",
"xpm install"
],
"link-local-bundle": [
"mkdir -pv node_modules/.bin",
"rm -f node_modules/.bin/bundle",
"ln -sv ${HOME}/.local/homebrew/jekyll/bin/bundle node_modules/.bin/bundle"
],
"bundle-install": [
"bundle install",
"bundle info jekyll",
"bundle exec jekyll --version"
],
"bundle-update": [
"bundle update",
"bundle show",
"bundle info jekyll",
"bundle exec jekyll --version"
],
"which-bundle": [
"which bundle",
"bundle --version",
"bundle exec jekyll --version",
"bundle exec jekyll --help"
],
"serve-preview": [
"bundle exec jekyll serve --trace --safe --baseurl \"/web-preview\" --destination _site_preview --port 4002"
],
"serve-preview-draft": [
"bundle exec jekyll serve --trace --safe --baseurl \"/web-preview\" --destination _site_preview --draft --port 4002"
],
"build-site": [
"bundle exec jekyll build"
],
"build-site-preview": [
"del-cli _site_preview",
"bundle exec jekyll build --trace --safe --baseurl \"/web-preview\" --destination _site_preview"
],
"htmlproofer-site": [
"bundle exec htmlproofer --allow-hash-href --http_status_ignore=429 ./_site"
],
"doxygen": [
"del-cli reference/cmsis-plus",
"mkdir -pv reference/cmsis-plus",
"doxygen _doxygen/config.doxyfile"
],
"browser": "open-cli website/html/index.html",
"deep-clean": "del-cli node_modules xpacks _site_preview package-lock.json"
}
}
}