1234567891011121314151617181920212223242526272829303132 |
- {
- "name": "leb128",
- "version": "0.0.4",
- "description": "LEB128 encoding and decoding for signed and unsinged intergers",
- "main": "index.js",
- "scripts": {
- "coveralls": "npm run coverage && nyc report --reporter=text-lcov | coveralls",
- "coverage": "nyc npm test",
- "lint": "standard",
- "test": "node ./test/leb.js"
- },
- "repository": {
- "type": "git",
- "url": "git+https://github.com/wanderer/leb128.git"
- },
- "keywords": [
- "leb128"
- ],
- "author": "mjbecze <mjbecze@gmail.com>",
- "license": "MPL-2.0",
- "devDependencies": {
- "coveralls": "^3.0.0",
- "nyc": "^14.1.1",
- "standard": "^11.0.0",
- "tape": "^4.6.3"
- },
- "dependencies": {
- "bn.js": "^4.11.6",
- "buffer-pipe": "0.0.2"
- }
- }
|