UNPKG

@penneo/asn1js

Version:

asn1js is a pure JavaScript library implementing this standard. ASN.1 is the basis of all X.509 related data structures and numerous other protocols used on the web

67 lines (66 loc) 1.83 kB
{ "author": "Yury Strozhevsky <yury@strozhevsky.com>", "contributors": [ "Ryan Hurst <rmh@unmitigatedrisk.com>" ], "engines": { "node": ">=6.0.0" }, "devDependencies": { "babel-cli": "latest", "babel-preset-env": "latest", "mocha": "^3.0.2", "rollup": "latest", "babel-plugin-istanbul": "^4.1.5", "nyc": "^11.6.0", "cross-env": "^5.1.4", "rollup-plugin-node-resolve": "^1.7.1", "asn1-test-suite": "latest" }, "repository": { "type": "git", "url": "git://github.com/PeculiarVentures/asn1.js.git" }, "dependencies": { "@penneo/pvutils": "latest" }, "description": "asn1js is a pure JavaScript library implementing this standard. ASN.1 is the basis of all X.509 related data structures and numerous other protocols used on the web", "keywords": [ "asn1", "parser", "asn.1", "ber", "der", "sequence", "set", "bitstring", "octetstring", "utctime", "utf8string", "bmpstring", "universalstring", "generalizedtime" ], "jsnext:main": "./src/asn1.js", "main": "./build/asn1.js", "name": "@penneo/asn1js", "scripts": { "build": "babel src --compact=false --out-dir build --source-maps", "watch": "babel src --compact=false --out-dir build --source-maps --watch", "ex1": "cd examples/ASN1Usage && npm run build && cd ../..", "build:examples": "npm run ex1", "build:tests": "npm run build:examples", "test": "cross-env NODE_ENV=test nyc mocha --require babel-register", "prepublishOnly": "npm run build" }, "version": "2.0.23", "license": "MIT", "bugs": { "url": "https://github.com/PeculiarVentures/asn1.js/issues" }, "homepage": "https://github.com/PeculiarVentures/asn1.js#readme", "directories": { "example": "examples", "test": "test" } }