-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 2.31 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
{
"name": "@micro-os-plus/hello-world-qemu-template",
"version": "1.4.3",
"description": "A source xPack / npm package with a template to generate semihosted Hello World projects running on QEMU",
"main": "./index.js",
"type": "module",
"scripts": {
"fix": "standard --fix",
"test-clean": "del-cli build",
"test-ci": "node ./tests/test.js ci",
"test-all": "node ./tests/test.js all",
"test-cortexm": "node ./tests/test.js cortexm",
"test-cortexa": "node ./tests/test.js cortexa",
"test-riscv": "node ./tests/test.js riscv",
"test-develop": "node ./tests/test.js develop",
"npm-install": "npm install",
"outdated": "npm outdated",
"update": "npm update",
"pack": "npm pack",
"version-patch": "npm version patch",
"version-minor": "npm version minor",
"npm-audit": "npm audit fix --force",
"postversion": "git push origin --all && git push origin --tags",
"git-log": "git log --pretty='%cd * %h %s' --date=short",
"deep-clean": "del-cli build node_modules package-lock.json",
"npm-version": "echo $(which node) $(node --version) && echo $(which npm) $(npm --version)"
},
"repository": {
"type": "git",
"url": "https://github.com/micro-os-plus/hello-world-qemu-template-xpack.git"
},
"homepage": "https://github.com/micro-os-plus/hello-world-qemu-template-xpack",
"bugs": {
"url": "https://github.com/micro-os-plus/hello-world-qemu-template-xpack/issues"
},
"keywords": [
"xpack",
"template",
"c++",
"cmake",
"meson",
"qemu",
"semihosting"
],
"author": {
"name": "Liviu Ionescu",
"email": "ilg@livius.net",
"url": "https://github.com/ilg-ul"
},
"license": "MIT",
"config": {},
"engines": {
"node": " >=16.14.0"
},
"dependencies": {
"@ilg/cli-start-options": "^0.6.6",
"cp-file": "^10.0.0",
"del": "^7.1.0",
"git-config-path": "^2.0.0",
"liquidjs": "^10.9.2",
"make-dir": "^4.0.0",
"parse-git-config": "^3.0.0"
},
"bundledDependencies": [
"@ilg/cli-start-options",
"cp-file",
"del",
"git-config-path",
"liquidjs",
"make-dir",
"parse-git-config"
],
"devDependencies": {
"del-cli": "^5.1.0",
"shelljs": "^0.8.5",
"standard": "^17.1.0",
"xpm": "^0.17.0"
},
"xpack": {
"minimumXpmRequired": "0.16.2"
}
}