-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.06 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
{
"name": "parse-server-amqp",
"version": "0.1.0",
"description": "AMQP Adapter for parse-server pub/sub",
"main": "src/index.js",
"scripts": {
"test": "mocha -R spec test/**/*",
"cover": "node_modules/.bin/istanbul cover node_modules/.bin/_mocha -- -- -u exports -R spec test/**/*"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ampme/parse-server-amqp.git"
},
"keywords": [
"parse-server",
"pubsub",
"livequery",
"scale"
],
"author": "Florent Vilmart",
"contributors": [
"Kirill Kravinsky <woyorus@gmail.com>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/ampme/parse-server-amqp/issues"
},
"homepage": "https://github.com/ampme/parse-server-amqp#readme",
"devDependencies": {
"chai": "3.5.0",
"eslint": "3.8.1",
"eslint-config-standard": "6.2.0",
"eslint-plugin-promise": "3.3.0",
"eslint-plugin-standard": "2.0.1",
"istanbul": "0.4.5",
"mocha": "3.1.2"
},
"dependencies": {
"amqplib": "0.4.2"
},
"engines": {
"node": ">=6.0"
}
}