-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
38 lines (37 loc) · 865 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
{
"name": "cf-mysql-node-broker",
"version": "1.0.0",
"description": "mysql service broker built on node.js for cloud foundry",
"main": "index.js",
"scripts": {
"start": "node ./server/app.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "https://github.com/komushi/cf-mysql-node-broker.git"
},
"keywords": [
"cf",
"cloud",
"foundry",
"service",
"broker"
],
"author": "Lei Xu",
"license": "ISC",
"dependencies": {
"express": "~4.0.0",
"body-parser":"1.10.x",
"basic-auth":"~1.0.0",
"fs":"~0.0.2",
"js-yaml":"3.2.x",
"q":"1.1.x",
"mysql":"~2.5.0",
"cfenv":"1.0.x"
},
"bugs": {
"url": "https://github.com/komushi/cf-mysql-node-broker/issues"
},
"homepage": "https://github.com/komushi/cf-mysql-node-broker"
}