-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1022 Bytes
/
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
{
"name": "@ekx/unit",
"version": "0.0.6",
"description": "Simple header-only testing library for C",
"scripts": {
"release": "changeset publish",
"version": "changeset version && yarn && git add yarn.lock && yarn run build && git add include/unit.h",
"build": "node scripts/amalgamate.js",
"test": "node scripts/test.js",
"test-wasm": "node scripts/test-wasm.js"
},
"files": [
"CMakeLists.txt",
"include"
],
"repository": {
"type": "git",
"url": "[email protected]:eliasku/unit.git"
},
"author": "Ilya Kuzmichev <[email protected]> (https://eliasku-games.web.app)",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"keywords": [
"c",
"testing",
"unit-testing",
"cmake",
"embedded",
"cross-platform",
"bdd",
"assertions",
"clang",
"kiss",
"header-only",
"single-header-library"
],
"bugs": {
"url": "https://github.com/eliasku/unit/issues",
"email": "[email protected]"
}
}