-
Notifications
You must be signed in to change notification settings - Fork 311
/
package.json
121 lines (121 loc) · 4.53 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"name": "seneca",
"description": "A Microservices Framework for Node.js",
"version": "4.0.0-rc4",
"license": "MIT",
"homepage": "http://senecajs.org",
"keywords": [
"micro",
"service",
"microservice",
"micro-service",
"microservices",
"micro-services",
"services",
"micro services",
"micro service",
"framework",
"minimum",
"viable",
"product",
"toolkit",
"startup"
],
"author": "Richard Rodger (http://richardrodger.com/)",
"contributors": [
"Adrien Becchis (https://github.com/AdrieanKhisbe)",
"Alexandru Mircea (https://github.com/mirceaalexandru)",
"Adrian Rossouw (http://daemon.co.za)",
"Colin Ihrig (https://github.com/cjihrig)",
"Cristian Ianto (https://github.com/iantocristian)",
"Cristian Kiss (https://github.com/ckiss)",
"David Mark Clements (https://github.com/davidmarkclements)",
"Dean McDonnell (https://github.com/mcdonnelldean)",
"Dominic Tarr (https://github.com/dominictarr)",
"Dustin Deus (https://github.com/StarpTech)",
"Glen Keane (https://github.com/thekemkid)",
"Gege Pincin (https://github.com/Georgette)",
"Jake Pruitt (https://github.com/jakepruitt)",
"Maciej Małecki (http://mmalecki.com)",
"Matteo Collina (https://github.com/mcollina)",
"Marian Radulescu (https://github.com/marianr)",
"Marius Ursache (https://github.com/bamse16)",
"Martin Betak (https://github.com/matobet)",
"Maxence Dalmais (https://github.com/maxired)",
"Mihai Dima (https://github.com/mihaidma)",
"Naomi Feehan (https://github.com/naomifeehan)",
"Paolo Chiodi (https://github.com/paolochiodi)",
"Peter Elger (https://github.com/pelger)",
"Reto Inderbitzin (https://github.com/indr)",
"Reid Rankin (https://github.com/reidrankin)",
"Tane Piper (https://github.com/tanepiper)",
"Wyatt Preul (https://github.com/geek)",
"Vald Houbiev (https://github.com/vladgolubev)",
"Vito Tardia (https://github.com/vtardia)"
],
"repository": {
"type": "git",
"url": "https://github.com/senecajs/seneca.git"
},
"files": [
"LICENSE",
"README.md",
"CHANGES.md",
"lib",
"seneca.*"
],
"engines": {
"node": ">=14"
},
"main": "seneca.js",
"scripts": {
"watch": "tsc -w -d",
"build": "tsc -d",
"test": "lab -v -P test -L -t 85 --sourcemaps --transform node_modules/lab-transform-typescript -I AggregateError,atob,btoa,AbortController,AbortSignal,EventTarget,Event,MessageChannel,MessagePort,MessageEvent,performance -r console -o stdout -r html -o test/coverage.html",
"test-some": "lab -v -P test --sourcemaps --transform node_modules/lab-transform-typescript -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 -L -t 90 -r html > docs/coverage.html",
"smoke": "node test/stubs/launch.js",
"prettier": "prettier --write *.js lib/*.js test/*.js",
"clean": "rm -rf node_modules package-lock.json yarn.lock",
"reset": "npm run clean && npm i && npm run build && npm test",
"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 clean && npm i && npm run repo-publish-quick",
"repo-publish-quick": "npm run prettier && npm run build && npm run test && npm run repo-tag && npm publish --access public --registry https://registry.npmjs.org"
},
"dependencies": {
"eraro": "^3.0.1",
"fast-safe-stringify": "^2.1.1",
"gate-executor": "^3.1.1",
"gubu": "^8.2.1",
"@jsonic/jsonic-next": "2.12.1",
"lodash.defaultsdeep": "^4.6.1",
"lodash.flatten": "^4.4.0",
"lodash.uniq": "^4.5.0",
"minimist": "^1.2.8",
"nid": "^2.0.1",
"ordu": "^2.2.0",
"patrun": "^7.2.5",
"rolling-stats": "^0.2.1",
"use-plugin": "^13.1.0"
},
"devDependencies": {
"@hapi/code": "^9.0.3",
"@hapi/lab": "^25.2.0",
"@seneca/test-plugin": "0.1.0",
"@types/node": "^20.14.10",
"async": "^3.2.5",
"bench": "^0.3.6",
"coveralls": "^3.1.1",
"gex": "^4.0.1",
"handlebars": "^4.7.8",
"lab-transform-typescript": "^3.0.1",
"lolex": "^6.0.0",
"prettier": "^3.3.2",
"seneca-entity": "^27.2.0",
"seneca-error-test": "^0.2.2",
"seneca-promisify": "^3.7.2",
"summary": "^2.1.0",
"typescript": "^5.5.3"
}
}