forked from senecajs/seneca
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
117 lines (117 loc) · 3.88 KB
/
package.json
File metadata and controls
117 lines (117 loc) · 3.88 KB
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
{
"name": "seneca",
"description": "A Microservices Framework for Node.js",
"version": "3.11.0",
"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.js"
],
"engines": {
"node": ">=8.0.0"
},
"main": "seneca.js",
"scripts": {
"test": "lab -v -P test -L -t 85 ",
"coveralls": "lab -s -P test -r lcov | coveralls",
"coverage": "lab -v -P test -L -t 85 -r html > docs/coverage.html",
"smoke": "node test/stubs/launch.js",
"prettier": "prettier --write *.js lib/*.js test/*.js",
"clean-npm": "rm -rf node_modules package-lock.json",
"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": "REPO_VERSION=`node -e \"console.log(require('./package').version)\"` && npm run prettier && npm test && npm run repo-tag && npm publish && npm dist-tag add seneca@$REPO_VERSION next && npm dist-tag add seneca@$REPO_VERSION plugin"
},
"dependencies": {
"@hapi/joi": "^15.0.3",
"archy": "^1.0.0",
"eraro": "^1.1.0",
"gate-executor": "^1.1.1",
"gex": "^0.3.0",
"json-stringify-safe": "^5.0.1",
"jsonic": "^0.3.1",
"lodash": "^4.17.11",
"minimist": "^1.2.0",
"nid": "^0.3.2",
"norma": "^0.4.1",
"optioner": "^4.0.0",
"ordu": "^0.1.1",
"patrun": "^1.0.0",
"qs": "^6.7.0",
"rolling-stats": "^0.1.1",
"seneca-transport": "^3.0.0",
"use-plugin": "^5.0.0",
"wreck": "^12"
},
"devDependencies": {
"@hapi/lab": "^18.1.2",
"@seneca/test-plugin": "0.0.1",
"async": "^2.6.2",
"bench": "^0.3.6",
"code": "^5.2.4",
"coveralls": "^3.0.2",
"handlebars": "^4.1.2",
"hoek": "^5",
"prettier": "^1.17.1",
"seneca-entity": "^4.0.0",
"seneca-error-test": "^0.2.2",
"seneca-joi": "^4.0.0",
"seneca-promisify": "^0.8.0"
}
}