forked from senecajs/seneca
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
115 lines (115 loc) · 3.82 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.9.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 ",
"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": {
"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",
"ordu": "^0.1.1",
"patrun": "^1.0.0",
"qs": "^6.7.0",
"rolling-stats": "^0.1.1",
"seneca-transport": "^3.0.0",
"use-plugin": "^4.0.0",
"wreck": "^12"
},
"devDependencies": {
"@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",
"lab": "^18.0.2",
"prettier": "^1.17.0",
"seneca-entity": "^3.3.0",
"seneca-error-test": "^0.2.2",
"seneca-joi": "^3.1.0",
"seneca-promisify": "^0.7.1"
}
}