generated from InfiniBrains/ModernCppStarter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.86 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
{
"name": "concurrency",
"version": "0.0.1",
"description": "Modern Cross Platform Job Scheduler and Runner with Job Stealing for Game Engines",
"main": "placeholder.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "placeholder",
"release": "npx -y semantic-release",
"prestyle": "cmake -S. -BbuildStyle -DENABLE_TEST_COVERAGE=ON -DENABLE_STANDALONE=OFF -DENABLE_DOCUMENTATION=OFF",
"style": "cmake --build buildStyle --target fix-format",
"prebuildall": "cmake -S. -Bbuild -DENABLE_TEST_COVERAGE=OFF -DENABLE_STANDALONE=ON -DENABLE_DOCUMENTATION=OFF",
"buildall": "cmake --build build -j20"
},
"repository": {
"type": "git",
"url": "git+https://github.com/InfiniBrains/concurrency.git"
},
"keywords": [
"GameEngine",
"JobStealing",
"TaskScheduler",
"CPP",
"WASM",
"EMSCRIPTEN"
],
"author": "InfiniBrains",
"license": "MIT",
"bugs": {
"url": "https://github.com/InfiniBrains/concurrency/issues"
},
"homepage": "https://infinibrains.github.io/concurrency/",
"dependencies": {
"@semantic-release/changelog": "^6.0.2",
"@semantic-release/commit-analyzer": "^9.0.2",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^8.0.7",
"@semantic-release/npm": "^9.0.1",
"@semantic-release/release-notes-generator": "^10.0.3",
"rimraf": "^3.0.2"
},
"release": {
"branches": [
"master",
"main"
],
"repositoryUrl": "https://github.com/InfiniBrains/concurrency",
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
[
"@semantic-release/changelog",
{
"changelogFile": "CHANGELOG.md"
}
],
[
"@semantic-release/git",
{
"assets": [
"CHANGELOG.md"
]
}
]
]
}
}