-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
46 lines (46 loc) · 1002 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
44
45
46
{
"name": "openframe-pubsubserver",
"version": "0.1.14",
"description": "Openframe's global PubSub event system.",
"main": "index.js",
"scripts": {
"start": "node start",
"test": "npm test",
"patch-release": "npm version patch && npm publish && git push --follow-tags"
},
"bin": {
"openframe-pubsubserver": "./bin/cli.js"
},
"author": {
"name": "Jonathan Wohl",
"url": "http://jonathanwohl.com"
},
"contributors": [
{
"name": "Jonathan Wohl",
"url": "http://jonathanwohl.com"
},
{
"name": "Ishac Bertran",
"url": "http://ishacbertran.com"
}
],
"license": "GPL-3.0",
"dependencies": {
"commander": "^2.9.0",
"debug": "^2.2.0",
"dotenv": "^2.0.0",
"faye": "^1.1.2",
"request": "^2.69.0"
},
"devDependencies": {
"eslint": "^2.0.0"
},
"keywords": [
"openframe"
],
"repository": {
"type": "git",
"url": "https://github.com/OpenframeProject/Openframe-APIServer"
}
}