-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.06 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
{
"name": "@consento/codecs",
"version": "2.2.0",
"description": "Serializable (named) codecs, including msgpack that work with typescript",
"main": "index.js",
"type": "commonjs",
"scripts": {
"lint": "standard",
"unit": "ts-node ./test.ts",
"test": "npm run lint && npm run unit"
},
"exports": {
".": "./index.js"
},
"keywords": [
"codecs"
],
"author": "Martin Heidegger <[email protected]>",
"license": "MIT",
"dependencies": {
"@consento/bigint-codec": "^2.0.2",
"@types/codecs": "^2.2.1",
"base32-codecs": "^1.0.4",
"codecs": "^2.2.0",
"inspect-custom-symbol": "^1.1.1",
"msgpack-codec": "^1.0.5"
},
"devDependencies": {
"@types/tape": "^4.13.0",
"standard": "^16.0.3",
"tape": "^5.0.1",
"ts-node": "^9.1.1",
"typescript": "^4.1.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/consento-org/codecs.git"
},
"bugs": {
"url": "https://github.com/consento-org/codecs/issues"
},
"homepage": "https://github.com/consento-org/codecs#readme"
}