forked from senecajs/seneca
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
111 lines (111 loc) · 3.28 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
{
"name": "seneca",
"description": "A Microservices Framework for Node.js",
"version": "3.5.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": ">=4.0.0"
},
"main": "seneca.js",
"scripts": {
"test": "lab -v -P test -L -t 85 -I URL,URLSearchParams,SharedArrayBuffer,Atomics",
"coveralls": "lab -s -P test -r lcov | coveralls",
"coverage": "lab -v -P test -L -t 85 -r html > docs/coverage.html",
"annotate": "docco seneca.js lib/*.js -o docs/annotated",
"smoke": "node test/stubs/launch.js",
"prettier": "prettier --write --no-semi --single-quote *.js lib/*.js test/*.js"
},
"dependencies": {
"archy": "1.0",
"eraro": "1.0",
"gate-executor": "1.1",
"gex": "0.3",
"json-stringify-safe": "5.0",
"jsonic": "0.3",
"lodash": "4.17",
"minimist": "1.2",
"nid": "0.3",
"norma": "0.4",
"ordu": "0.1",
"patrun": "1.0",
"qs": "6.5",
"rolling-stats": "0.1",
"semver": "5.5",
"seneca-transport": "2.2",
"use-plugin": "1.0",
"wreck": "12.5"
},
"devDependencies": {
"async": "2",
"bench": "0",
"code": "4",
"coveralls": "3",
"docco": "0",
"hoek": "4",
"lab": "14",
"prettier": "1",
"seneca-entity": "2.1",
"seneca-error-test": "0"
}
}