-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathpackage.json
43 lines (43 loc) · 990 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
32
33
34
35
36
37
38
39
40
41
42
43
{
"name": "groupme",
"version": "0.5.8",
"main": "index",
"description": "A Node Module for interacting with the GroupMe API. Supports both querying the Stateless API and receiving Websocket-based push messages, and provides a CLI.",
"keywords": [
"groupme",
"api",
"text",
"bot",
"websocket",
"push",
"cli"
],
"author": "Niels Joubert <[email protected]> (http://njoubert.com/)",
"repository": {
"type": "git",
"url": "http://github.com/njoubert/node-groupme.git"
},
"bugs": {
"url": "https://github.com/njoubert/node-groupme/issues"
},
"directories": {
"lib": "./lib",
"test": "./test"
},
"scripts": {
"test": "node ./test/test.js"
},
"dependencies": {
"mime": "1.x.x",
"q": "0.9.x",
"request": "^2.88.0",
"websocket": "1.0.x"
},
"devDependencies": {},
"license": [
{
"type": "zlib",
"url": "http://github.com/njoubert/node-groupme/blob/master/LICENSE"
}
]
}