-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
53 lines (53 loc) · 1.4 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
{
"name": "@micro-os-plus/build-helper",
"version": "2.14.0",
"description": "A source library xPack to assist the µOS++ builds",
"main": "",
"scripts": {
"npm-install": "npm install",
"pack": "npm pack",
"version-patch": "npm version patch",
"version-minor": "npm version minor",
"postversion": "git push origin --all && git push origin --tags",
"git-log": "git log --pretty='%cd * %h %s' --date=short"
},
"repository": {
"type": "git",
"url": "https://github.com/micro-os-plus/build-helper-xpack.git"
},
"homepage": "https://github.com/micro-os-plus/build-helper-xpack",
"bugs": {
"url": "https://github.com/micro-os-plus/build-helper-xpack/issues"
},
"keywords": [
"xpack",
"c++",
"micro-os-plus"
],
"author": {
"name": "Liviu Ionescu",
"email": "[email protected]",
"url": "https://github.com/ilg-ul"
},
"license": "MIT",
"config": {},
"dependencies": {},
"bundleDependencies": [],
"devDependencies": {},
"xpack": {
"minimumXpmRequired": "0.16.2",
"dependencies": {},
"devDependencies": {
"@xpack-dev-tools/cmake": "3.20.6-2.1",
"@xpack-dev-tools/ninja-build": "1.10.2-5.1"
},
"properties": {},
"actions": {
"test-cmake": "cmake -S tests -B build/tests-cmake -G Ninja --log-level=VERBOSE",
"test": [
"xpm run test-cmake"
]
},
"buildConfigurations": {}
}
}