forked from senecajs/seneca
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
115 lines (115 loc) · 3.42 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
{
"name": "seneca",
"description": "A Microservices Framework for Node.js",
"version": "3.4.1",
"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 90",
"coveralls": "lab -s -P test -r lcov | coveralls",
"coverage": "lab -v -P test -L -t 90 -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 seneca.js lib/*.js test/*.js"
},
"dependencies": {
"archy": "1.0.0",
"eraro": "0.4.1",
"gate-executor": "1.1.1",
"gex": "0.2.2",
"json-stringify-safe": "5.0.1",
"jsonic": "0.3.0",
"lodash": "4.17.4",
"minimist": "1.2.0",
"nid": "0.3.2",
"norma": "0.3.0",
"ordu": "0.1.1",
"patrun": "0.5.1",
"qs": "6.4.0",
"rolling-stats": "0.1.1",
"semver": "5.3.0",
"seneca-log-filter": "0.1.0",
"seneca-transport": "2.1.1",
"use-plugin": "0.3.2",
"wreck": "12.2.0"
},
"devDependencies": {
"async": "2.4.x",
"bench": "0.3.x",
"body-parser": "1.17.x",
"code": "4.1.x",
"connect": "3.6.x",
"connect-query": "1.0.x",
"coveralls": "2.13.x",
"docco": "0.7.x",
"hoek": "4.1.x",
"lab": "14.0.x",
"prettier": "1.4.x",
"seneca-entity": "2.0.x",
"seneca-error-test": "0.2.x"
}
}