-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
31 lines (31 loc) · 907 Bytes
/
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
{
"name": "microplum",
"version": "0.1.0",
"description": "Library that provide persistence layer of communication between microservices.",
"main": "index.js",
"engines": {
"node": ">=8"
},
"scripts": {
"start": "node ./node_modules/.bin/gulp",
"build": "node ./node_modules/.bin/gulp build",
"clean": "node ./node_modules/.bin/gulp clean",
"test": "node ./node_modules/.bin/gulp test"
},
"repository": "https://github.com/tgorka/microplum.git",
"author": "Tomasz Gorka <tomasz@gorka.org.pl>",
"license": "MIT",
"dependencies": {
"@types/lodash": "^4.14.68",
"@types/seneca": "^2.1.6",
"lodash": "^4.17.4",
"seneca": "3.3.0",
"seneca-amqp-transport": "2.1.0",
"source-map-support": "^0.4.15"
},
"devDependencies": {
"gulp": "^3.9.1",
"servicelychee": "https://github.com/tgorka/servicelychee",
"typescript": "^2.4.1"
}
}