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

cson

Package Overview
Dependencies
Maintainers
1
Versions
113
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

cson - npm Package Compare versions

Comparing version 1.4.0 to 1.4.1

Cakefile

2

out/bin/cson2json.js

@@ -1,2 +0,2 @@

// Generated by CoffeeScript 1.4.0
// Generated by CoffeeScript 1.6.1
(function() {

@@ -3,0 +3,0 @@ var CSON, argv, filePath, fs, path, result;

@@ -1,2 +0,2 @@

// Generated by CoffeeScript 1.4.0
// Generated by CoffeeScript 1.6.1
(function() {

@@ -3,0 +3,0 @@ var CSON, argv, filePath, fs, path, result;

@@ -1,2 +0,2 @@

// Generated by CoffeeScript 1.4.0
// Generated by CoffeeScript 1.6.1
(function() {

@@ -3,0 +3,0 @@ var CSON, coffee, fsUtil, js2coffee, pathUtil, wait;

{
"name": "cson",
"version": "1.4.0",
"version": "1.4.1",
"description": "CoffeeScript-Object-Notation Parser. Same as JSON but for CoffeeScript objects",

@@ -16,9 +16,11 @@ "homepage": "https://github.com/bevry/cson",

"maintainers": [
"Benjamin Lupton <b@lupton.cc> (http://balupton.com)"
"Benjamin Lupton <b@lupton.cc> (https://github.com/balupton)"
],
"contributors": [
"Benjamin Lupton <b@lupton.cc> (http://balupton.com)",
"Ryan LeFevre <meltingice8917@gmail.com> (http://meltingice.net)",
"Benjamin Lupton <b@lupton.cc> (https://github.com/balupton)",
"Ryan LeFevre <meltingice8917@gmail.com> (https://github.com/meltingice)",
"Linus G Thiel <linus@hanssonlarsson.se> (https://github.com/linus)",
"Zhang Cheng <czhang.oss@gmail.com> (https://github.com/zhangcheng)"
"Zhang Cheng <czhang.oss@gmail.com> (https://github.com/zhangcheng)",
"Nicolae Claudius <claudius.nicolae@gmail.com> (https://github.com/clyfe)",
"Joel Perras <joel.perras@gmail.com> (https://github.com/jperras)"
],

@@ -36,7 +38,7 @@ "bugs": {

"dependencies": {
"coffee-script": "1.4.x",
"js2coffee": "0.1.x"
"coffee-script": "~1.6.1",
"js2coffee": "~0.1.3"
},
"devDependencies": {
"joe": "1.0.x"
"joe": "~1.1.1"
},

@@ -43,0 +45,0 @@ "directories": {

@@ -27,2 +27,3 @@ # CSON [![Build Status](https://secure.travis-ci.org/bevry/cson.png?branch=master)](http://travis-ci.org/bevry/cson)

{
# an array
abc: [

@@ -33,2 +34,4 @@ 'a'

]
# an object
a:

@@ -39,3 +42,3 @@ b: 'c'

Which is far more lenient than JSON, nicer to write and read, and won't fail if you forget a comma.
Which is far more lenient than JSON, nicer to write and read, you don't have to quote everything, you have comments, and won't fail if you forget a comma.

@@ -68,3 +71,2 @@

result = CSON.parseFileSync('data.cson'); // sync
result = require('data.cson'); // sync using require

@@ -90,3 +92,2 @@ // Parse a String

result = CSON.parseFile('data.cson') # sync
result = require('data.cson') # sync using require

@@ -93,0 +94,0 @@ # Parse a string

Sorry, the diff of this file is not supported yet

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