New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

bear

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

bear - npm Package Compare versions

Comparing version 0.1.0 to 0.1.1

.idea/bear.iml

2

lib/bear.js

@@ -104,3 +104,3 @@ var _ = require( 'lodash' );

dfs.readFile( site, 'utf8' )
.done( function( data ) {
.done( function( status, data ) {
bear.settings = JSON.parse( data );

@@ -107,0 +107,0 @@ bear.ready.resolve();

{
"name": "bear",
"description": "a git based deployment tool",
"version": "0.1.0",
"homepage": "https://github.com/danheberden/bear",
"description": "Cli for Docker deployments on AWS",
"version": "0.1.1",
"homepage": "https://github.com/ondrek/bear",
"author": {
"name": "Dan Heberden",
"email": "danheberden@gmail.com",
"url": "http://danheberden.com/"
"name": "Samuel Ondrek",
"email": "samuel@ondrek.com"
},
"repository": {
"type": "git",
"url": "git://github.com/danheberden/bear.git"
"url": "git://github.com/ondrek/bear.git"
},
"bugs": {
"url": "https://github.com/danheberden/bear/issues"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/danheberden/bear/blob/master/LICENSE-MIT"
}
],
"main": "lib/bear",

@@ -30,13 +20,3 @@ "engines": {

"test": "grunt test"
},
"devDependencies": {
"grunt": "~0.3.17"
},
"dependencies": {
"lodash": ">= 0.9.2",
"underscore.deferred": ">= 0.2.0",
"gith": ">= 1.0.4",
"deferred-exec": ">= 0.3.1"
},
"keywords": []
}
}

@@ -1,15 +0,3 @@

# bear
# Bear CLI
a git based deployment tool
## what does it do?
listens for changes to your git repository, gets the latest changes and launches them
## is this it?
no, I have a lot of stuff planned for this but gotta start somewhere
## License
Copyright (c) 2012 Dan Heberden
Licensed under the MIT license.
This package is under development since 04/2020. We will deliver within a few days. Thanks for understanding.

@@ -147,4 +147,12 @@ /*

});
},
'test file loading of settings' : function( test ) {
test.expect(1);
var otherSite = bear( 'test/site.json' );
otherSite.ready.done( function() {
test.equal( otherSite.attr('live'), 'test/site/live/', 'settings from json file should match initialized object' );
test.done();
});
}
};
SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc