-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.2 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
{
"name": "glued-store",
"version": "0.3.9",
"description": "Interface for storing objects through HTTP, Pub-Sub or RPC",
"main": "index.js",
"dependencies": {
"body-parser": "^1.15.2",
"express": "^4.14.0",
"glued-common": "^0.4.4"
},
"devDependencies": {
"eslint-config-standard": "^6.2.0",
"eslint-plugin-promise": "^2.0.1",
"eslint-plugin-standard": "^2.0.1",
"mocha": "^3.0.1",
"sinon": "^1.17.5",
"standard": "^8.3.0",
"supertest": "^2.0.0"
},
"scripts": {
"test": "node node_modules/.bin/mocha --recursive test/ && node_modules/.bin/standard"
},
"bin": {
"glued-store-http": "bin/service-http.js",
"glued-store-pubsub": "bin/service-pubsub.js",
"glued-store-rpc": "bin/service-rpc.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ggioffreda/glued-store.git"
},
"keywords": [
"glue",
"glued",
"store",
"objects",
"http",
"rest",
"api",
"amqp"
],
"author": "Giovanni Gioffreda <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/ggioffreda/glued-store/issues"
},
"homepage": "https://github.com/ggioffreda/glued-store#readme"
}