-
Notifications
You must be signed in to change notification settings - Fork 44
/
package.json
82 lines (82 loc) · 3.18 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
{
"name": "seneca-transport",
"version": "8.3.0",
"description": "Seneca transport",
"main": "transport.js",
"license": "MIT",
"author": "Richard Rodger (http://richardrodger.com)",
"precommit": "test",
"repository": {
"type": "git",
"url": "git+https://github.com/senecajs/seneca-transport.git"
},
"keywords": [
"seneca",
"transport",
"plugin"
],
"scripts": {
"test": "lab -v -P test -t 70 -I AggregateError,atob,btoa,DOMException,AbortController,AbortSignal,EventTarget,Event,MessageChannel,MessagePort,MessageEvent,performance,structuredClone",
"test-some": "lab -v -P test -g",
"coveralls": "lab -s -P test -I AggregateError,atob,btoa,DOMException,AbortController,AbortSignal,EventTarget,Event,MessageChannel,MessagePort,MessageEvent,performance,structuredClone -r lcov > ./coverage/lcov.info",
"coverage": "lab -v -P test -t 70 -r html -I URL,URLSearchParams > coverage.html",
"prettier": "prettier --write --no-semi --single-quote *.js lib/*.js test/*.js",
"reset": "npm run clean && npm i && npm test",
"clean": "rm -rf node_modules package-lock.json yarn.lock",
"repo-tag": "REPO_VERSION=`node -e \"console.log(require('./package').version)\"` && echo TAG: v$REPO_VERSION && git commit -a -m v$REPO_VERSION && git push && git tag v$REPO_VERSION && git push --tags;",
"repo-publish": "npm run reset && npm run repo-publish-quick",
"repo-publish-quick": "npm run prettier && npm test && npm run repo-tag --registry https://registry.npmjs.org && npm publish --access public --registry https://registry.npmjs.org"
},
"contributors": [
"Richard Rodger (https://github.com/rjrodger)",
"Wyatt Preul (https://github.com/geek)",
"Dean McDonnell (https://github.com/mcdonnelldean)",
"Mihai Dima (https://github.com/mihaidma)",
"David Gonzalez (https://github.com/dgonzalez)",
"Glen Keane (https://github.com/thekemkid)",
"Marco Piraccini (https://github.com/marcopiraccini)",
"Shane Lacey (https://github.com/shanel262)",
"Cristian Kiss (https://github.com/ckiss)",
"jaamison (https://github.com/jaamison)",
"peterli888 (https://github.com/peterli888)",
"Emer Rutherford (https://github.com/eeswr)",
"Greg Kubisa (https://github.com/gkubisa)",
"Geoffrey Clements (https://github.com/baldmountain)",
"Rumkin (https://github.com/rumkin)",
"Boris Jonica (https://github.com/bjonica)",
"Damien Simonin Feugas (https://github.com/feugy)",
"Tyler Waters (https://github.com/tswaters)",
"Christian Gaggero (https://github.com/chirigg)"
],
"dependencies": {
"@hapi/wreck": "^18.1.0",
"eraro": "^3.0.1",
"lodash.foreach": "^4.5.0",
"lodash.omit": "^4.5.0",
"lru-cache": "8.x",
"ndjson": "^2.0.0",
"qs": "^6.13.0",
"reconnect-core": "^1.3.0"
},
"devDependencies": {
"@hapi/code": "9",
"@hapi/joi": "17",
"@hapi/lab": "25",
"async": "^3.2.6",
"bench": "^0.3.6",
"coveralls": "^3.1.1",
"prettier": "^3.3.3",
"seneca-transport-test": "^1.0.0",
"sinon": "^19.0.2"
},
"peerDependencies": {
"seneca": ">=3",
"seneca-entity": ">=28"
},
"files": [
"transport.js",
"README.md",
"LICENSE",
"lib"
]
}