motion
Version:
motion - moving development forward
70 lines (69 loc) • 3.12 kB
JSON
{
"_args": [
[
"asn1@https://registry.npmjs.org/asn1/-/asn1-0.1.11.tgz",
"/Users/nw/flint/packages/flint"
]
],
"_from": "asn1@0.1.11",
"_id": "asn1@0.1.11",
"_inCache": true,
"_location": "/asn1",
"_phantomChildren": {},
"_requested": {
"name": "asn1",
"raw": "asn1@https://registry.npmjs.org/asn1/-/asn1-0.1.11.tgz",
"rawSpec": "https://registry.npmjs.org/asn1/-/asn1-0.1.11.tgz",
"scope": null,
"spec": "https://registry.npmjs.org/asn1/-/asn1-0.1.11.tgz",
"type": "remote"
},
"_requiredBy": [
"/http-signature"
],
"_resolved": "https://registry.npmjs.org/asn1/-/asn1-0.1.11.tgz",
"_shasum": "559be18376d08a4ec4dbe80877d27818639b2df7",
"_shrinkwrap": null,
"_spec": "asn1@https://registry.npmjs.org/asn1/-/asn1-0.1.11.tgz",
"_where": "/Users/nw/flint/packages/flint",
"author": {
"email": "mcavage@gmail.com",
"name": "Mark Cavage"
},
"bugs": {
"url": "https://github.com/mcavage/node-asn1/issues"
},
"contributors": [
{
"name": "David Gwynne",
"email": "loki@animata.net"
},
{
"name": "Yunong Xiao",
"email": "yunong@joyent.com"
}
],
"dependencies": {},
"description": "Contains parsers and serializers for ASN.1 (currently BER only)",
"devDependencies": {
"tap": "0.1.4"
},
"engines": {
"node": ">=0.4.9"
},
"homepage": "https://github.com/mcavage/node-asn1#readme",
"main": "lib/index.js",
"name": "asn1",
"optionalDependencies": {},
"readme": "node-asn1 is a library for encoding and decoding ASN.1 datatypes in pure JS.\nCurrently BER encoding is supported; at some point I'll likely have to do DER.\n\n## Usage\n\nMostly, if you're *actually* needing to read and write ASN.1, you probably don't\nneed this readme to explain what and why. If you have no idea what ASN.1 is,\nsee this: ftp://ftp.rsa.com/pub/pkcs/ascii/layman.asc\n\nThe source is pretty much self-explanatory, and has read/write methods for the\ncommon types out there.\n\n### Decoding\n\nThe following reads an ASN.1 sequence with a boolean.\n\n var Ber = require('asn1').Ber;\n\n var reader = new Ber.Reader(new Buffer([0x30, 0x03, 0x01, 0x01, 0xff]));\n\n reader.readSequence();\n console.log('Sequence len: ' + reader.length);\n if (reader.peek() === Ber.Boolean)\n console.log(reader.readBoolean());\n\n### Encoding\n\nThe following generates the same payload as above.\n\n var Ber = require('asn1').Ber;\n\n var writer = new Ber.Writer();\n\n writer.startSequence();\n writer.writeBoolean(true);\n writer.endSequence();\n\n console.log(writer.buffer);\n\n## Installation\n\n npm install asn1\n\n## License\n\nMIT.\n\n## Bugs\n\nSee <https://github.com/mcavage/node-asn1/issues>.\n",
"readmeFilename": "README.md",
"repository": {
"type": "git",
"url": "git://github.com/mcavage/node-asn1.git"
},
"scripts": {
"pretest": "which gjslint; if [[ \"$?\" = 0 ]] ; then gjslint --nojsdoc -r lib -r tst; else echo \"Missing gjslint. Skipping lint\"; fi",
"test": "tap ./tst"
},
"version": "0.1.11"
}