Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

cbor

Package Overview
Dependencies
Maintainers
3
Versions
61
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

cbor - npm Package Compare versions

Comparing version 1.0.3 to 1.0.4

man/cbor2comment.1.gz

1

lib/cbor.js

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

// Generated by CoffeeScript 1.10.0
(function() {

@@ -2,0 +3,0 @@ var error;

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

// Generated by CoffeeScript 1.10.0
(function() {

@@ -2,0 +3,0 @@ var Commented, Decoder, MT, NUMBYTES, NoFilter, SYMS, Simple, assert, bignumber, plural, ref, stream, util, utils,

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

// Generated by CoffeeScript 1.10.0
(function() {

@@ -2,0 +3,0 @@ this.MT = (function() {

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

// Generated by CoffeeScript 1.10.0
(function() {

@@ -2,0 +3,0 @@ var BinaryParseStream, COUNT, Decoder, ERROR, MAJOR, MT, NEG_MAX, NEG_ONE, NOT_FOUND, NUMBYTES, NoFilter, PENDING_KEY, SIMPLE, SYMS, Simple, Tagged, bignumber, parentArray, parentBufferStream, ref, utils,

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

// Generated by CoffeeScript 1.10.0
(function() {

@@ -2,0 +3,0 @@ var Decoder, Diagnose, MT, NoFilter, SYMS, Simple, bignumber, ref, stream, util, utils,

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

// Generated by CoffeeScript 1.10.0
(function() {

@@ -2,0 +3,0 @@ var DOUBLE, Encoder, FALSE, MAXINT_BN, MT, NULL, NUMBYTES, NoFilter, SHIFT32, SIMPLE, SYMS, Simple, TAG, TRUE, Tagged, UNDEFINED, bignumber, ref, stream, url,

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

// Generated by CoffeeScript 1.10.0
(function() {

@@ -2,0 +3,0 @@ var MT, SIMPLE, SYMS, Simple, ref;

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

// Generated by CoffeeScript 1.10.0
(function() {

@@ -2,0 +3,0 @@ var MINUS_ONE, TEN, TWO, Tagged, bignumber, url, utils;

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

// Generated by CoffeeScript 1.10.0
(function() {

@@ -2,0 +3,0 @@ var MAX_SAFE_HIGH, NUMBYTES, SHIFT32, bignumber, fs, parseHalf, printError, stream,

50

package.json
{
"name": "cbor",
"version": "1.0.3",
"version": "1.0.4",
"description": "Encode and parse data in the Concise Binary Object Representation (CBOR) data format (RFC7049).",

@@ -22,5 +22,18 @@ "main": "./lib/cbor.js",

"scripts": {
"test": "grunt test",
"ci": "grunt ci",
"prepublish": "grunt prepublish"
"clean": "rm -rf coverage lib doc man/*",
"lint": "coffeelint src test",
"coffee": "coffee -cm -o lib/ src",
"coverage": "istanbul cover nodeunit test/*.test.js",
"precoverage": "npm run coffee -s",
"test": "nodeunit test/*.coffee",
"pretest": "npm run coffee -s",
"codo": "codo src",
"man": "mkdir -p man; for f in man_src/*.md; do b=`basename $f`; marked-man $f -o man/${b%.md}.1; gzip -9f man/${b%.md}.1; done",
"doc": "npm-run-all --silent man codo",
"prepublish": "npm-run-all --silent coffee doc",
"watch": "watch 'npm run coverage' src/",
"release": "npm version patch && git push --follow-tags && npm publish",
"ci": "npm run coverage -s && cat ./coverage/lcov.info | coveralls",
"live": "live-server --port=4002 --ignorePattern='(js|css|png)$' coverage/lcov-report",
"dev": "npm-run-all -p --silent watch live"
},

@@ -41,18 +54,15 @@ "keywords": [

"devDependencies": {
"async": "^1.4",
"coffeelint": "^1.15",
"garbage": "0.0",
"grunt": "~1.0",
"grunt-coffeelint": "0.0",
"grunt-contrib-clean": "^1.0",
"grunt-contrib-coffee": "~1.0",
"grunt-contrib-nodeunit": "~1.0",
"grunt-contrib-watch": "^1.0",
"grunt-coveralls": "~1.0",
"grunt-express": "^1.4",
"grunt-markedman": "^1.0",
"grunt-release": "^0.13",
"grunt-shell": "~1.3",
"jit-grunt": "^0.10",
"source-map-support": "^0.4"
"async": "latest",
"codo": "latest",
"coffeelint": "latest",
"coffee-script": "latest",
"coveralls": "latest",
"garbage": "latest",
"istanbul": "latest",
"live-server": "latest",
"marked-man": "latest",
"nodeunit": "latest",
"npm-run-all": "latest",
"source-map-support": "latest",
"watch": "latest"
},

@@ -59,0 +69,0 @@ "license": "MIT",

@@ -74,25 +74,9 @@ cbor

For the moment, you'll need to manually install istanbul, nodeunit, and grunt-cli:
Get a list of build steps with `npm run`. I use `npm run dev`, which rebuilds,
runs tests, and refreshes a browser window with coverage metrics every time I
save a `.coffee` file.
```
$ npm install -g grunt-cli nodeunit istanbul
$ grunt
Running "coffee:compile" (coffee) task
Running "nodeunit:all" (nodeunit) task
Testing decoder.test.....OK
Testing diagnose.test...OK
Testing encoder.test.......OK
Testing evented.test....OK
Testing simple.test.OK
Testing tagged.test..OK
Testing utils.test.......OK
>> 459 assertions passed (129ms)
Done, without errors.
```
[![Build Status](https://api.travis-ci.org/hildjj/node-cbor.png)](https://travis-ci.org/hildjj/node-cbor)
[![Coverage Status](https://coveralls.io/repos/hildjj/node-cbor/badge.png?branch=master)](https://coveralls.io/r/hildjj/node-cbor?branch=master)
[![Dependency Status](https://david-dm.org/hildjj/node-cbor.png)](https://david-dm.org/hildjj/node-cbor)

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

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