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

accountant

Package Overview
Dependencies
Maintainers
1
Versions
12
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

accountant - npm Package Compare versions

Comparing version 0.0.0 to 0.0.1

example-accounts.json

6

accountant.js

@@ -109,4 +109,6 @@ /**

exports.run = function(){
var accts = JSON.parse(fs.readFileSync('./accounts.json', 'utf8').replace(/\/\/.*\n/g, '')) //strip comments
exports.run = function(file){
file = file || './accounts.json'
var accts = JSON.parse(fs.readFileSync(file, 'utf8').replace(/\/\/.*\n/g, '')) //strip comments
, stocks = {}

@@ -113,0 +115,0 @@ , banks = {}

@@ -5,3 +5,3 @@ {

"description": "Double Entry Accounting",
"version": "0.0.0",
"version": "0.0.1",
"repository": {

@@ -20,2 +20,6 @@ "url": ""

"main": "./accountant.js"
, "bin" : {
"acct-ls" : "./scripts/ls.js"
}
}
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