-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
90 lines (90 loc) · 1.92 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "nanomessage",
"version": "11.1.1",
"description": "Simple module that helps you to build a `request-response` abstraction on top of any other solution (e.g. streams).",
"type": "module",
"main": "./dist/index.cjs",
"exports": {
".": {
"require": "./dist/index.cjs",
"import": "./src/index.js"
},
"./package.json": "./package.json"
},
"files": [
"dist",
"src"
],
"scripts": {
"benchmark": "node tests/benchmark.js",
"build": "tsup",
"test": "uvu -i create -i benchmark",
"posttest": "npm run lint",
"lint": "standard",
"prepublishOnly": "npm test && npm run build",
"coverage": "c8 uvu -i create -i benchmark",
"make-badge": "coverage-badges"
},
"dependencies": {
"fastq": "^1.8.0",
"msgpackr": "^1.6.3",
"nanocustomassert": "^1.0.0",
"nanoerror": "^1.3.0",
"nanoresource-promise": "^3.1.0"
},
"devDependencies": {
"abortcontroller-polyfill": "^1.7.3",
"c8": "^7.12.0",
"coverage-badges": "^1.0.7",
"standard": "^17.0.0",
"streamx": "^2.6.4",
"tinybench": "^2.3.1",
"tinyspy": "^1.0.2",
"tsup": "^6.3.0",
"uvu": "^0.5.6"
},
"standard": {
"env": [
"node",
"browser"
]
},
"tsup": {
"entry": [
"src/index.js"
],
"format": [
"cjs",
"iife"
],
"globalName": "Nanomessage",
"splitting": false,
"sourcemap": true,
"clean": true
},
"repository": {
"type": "git",
"url": "git+https://github.com/geut/nanomessage.git"
},
"keywords": [
"nano",
"geut",
"request",
"request-response",
"websocket",
"socket",
"stream"
],
"author": {
"name": "GEUT",
"email": "[email protected]"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/geut/nanomessage/issues"
},
"homepage": "https://github.com/geut/nanomessage#readme",
"publishConfig": {
"access": "public"
}
}