-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fixes #31
- Loading branch information
Patrick Mueller
committed
Apr 18, 2018
1 parent
4c29ce1
commit 3490eda
Showing
11 changed files
with
154 additions
and
46 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
package-lock = false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,30 @@ | ||
{ | ||
"name": "cfenv", | ||
"main": "./lib/cfenv", | ||
"description": "easy access to your Cloud Foundry application environment", | ||
"version": "1.0.4", | ||
"author": "pmuellr", | ||
"license": "Apache-2.0", | ||
"homepage": "https://github.com/cloudfoundry-community/node-cfenv", | ||
"name": "cfenv", | ||
"main": "./lib/cfenv", | ||
"description": "easy access to your Cloud Foundry application environment", | ||
"version": "1.1.0", | ||
"author": "pmuellr", | ||
"license": "Apache-2.0", | ||
"homepage": "https://github.com/cloudfoundry-community/node-cfenv", | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/cloudfoundry-community/node-cfenv.git" | ||
"type": "git", | ||
"url": "https://github.com/cloudfoundry-community/node-cfenv.git" | ||
}, | ||
"scripts": { | ||
"build": "jbuild build", | ||
"serve": "jbuild serve", | ||
"test": "jbuild test", | ||
"watch": "jbuild watch" | ||
}, | ||
"dependencies": { | ||
"js-yaml": "3.7.x", | ||
"ports": "1.1.x", | ||
"underscore": "1.8.x" | ||
"js-yaml": "3.11.x", | ||
"ports": "1.1.x", | ||
"underscore": "1.8.x" | ||
}, | ||
"devDependencies": { | ||
"coffee-script": "1.12.x", | ||
"mocha": "3.2.x", | ||
"expect.js": "0.3.x" | ||
"coffeescript": "1.12.x", | ||
"expect.js": "0.3.x", | ||
"jbuild": "1.0.x", | ||
"mocha": "5.1.x" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
this file intentially does not contain valid JSON |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
{ | ||
"services": { | ||
"service-a-label": [ | ||
{ | ||
"name": "service-a", | ||
"label": "service-a-label", | ||
"credentials": { | ||
"url": "foo" | ||
} | ||
} | ||
] | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters