-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 883 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 883 Bytes
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
{
"name": "@datkt/bytes-from",
"version": "1.0.4",
"description": "Convert various arguments into a ByteArray",
"main": "index.kt",
"scripts": {
"postinstall": "npm run build",
"build": "konanc index.kt $(konanc-config -clr lib.kc) -p library -o bytes-from",
"test": "konanc test.kt $(konanc-config -clr . test.kc) -p program -o test.kexe && ./test.kexe"
},
"keywords": [
"datkt",
"bytes",
"convert",
"from",
"vararg",
"variadic",
"arguments"
],
"author": "Joseph Werle <werle@littlstar.com>",
"license": "MIT",
"devDependencies": {
"@datkt/tape": "^0.6.0"
},
"dependencies": {},
"repository": {
"type": "git",
"url": "git+https://github.com/datkt/bytes-from.git"
},
"bugs": {
"url": "https://github.com/datkt/bytes-from/issues"
},
"homepage": "https://github.com/datkt/bytes-from#readme"
}