-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
69 lines (69 loc) · 1.71 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "openframe-apiserver",
"version": "0.4.2",
"description": "The Openframe API Server.",
"main": "server/server.js",
"scripts": {
"start": "./bin/cli.js -p",
"start:live": "nodemon ./bin/cli.js -p",
"start-api": "./bin/cli.js",
"start-pubsub": "node ./node_modules/openframe-pubsubserver/start",
"pretest": "eslint .",
"patch-release": "npm version patch && npm publish && git push --follow-tags"
},
"bin": {
"openframe-apiserver": "./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": "AGPL-3.0+",
"dependencies": {
"bcrypt": "^0.8.5",
"bluebird": "^3.3.3",
"body-parser": "^1.15.0",
"bootstrap": "^3.3.6",
"commander": "^2.9.0",
"compression": "^1.0.3",
"cors": "^2.5.2",
"debug": "^2.2.0",
"dotenv": "^2.0.0",
"ejs": "^2.4.1",
"faye": "^1.1.2",
"image-zoom": "^1.1.1",
"jquery": "^2.2.0",
"kerberos": "0.0.18",
"lodash": "^4.5.1",
"loopback": "^3.0.0",
"loopback-boot": "^2.6.5",
"loopback-component-explorer": "^4.0.0",
"loopback-connector-mongodb": "^3.0.0",
"openframe-pubsubserver": "^0.1.5",
"serve-favicon": "^2.0.1",
"strong-error-handler": "^1.0.1",
"the-big-username-blacklist": "^1.3.1",
"underscore": "^1.8.3"
},
"devDependencies": {
"eslint": "^2.0.0",
"nodemon": "^1.9.2"
},
"keywords": [
"openframe"
],
"repository": {
"type": "git",
"url": "https://github.com/OpenframeProject/Openframe-APIServer"
}
}