UNPKG

bencodec

Version:

Library for decoding and encoding bencode data

52 lines (51 loc) 1.23 kB
{ "name": "bencodec", "version": "3.1.0", "description": "Library for decoding and encoding bencode data", "main": "lib/index.js", "scripts": { "build": "./node_modules/.bin/tsc", "lint": "eslint src/**/*.ts", "test": "npm run lint && ./node_modules/.bin/jest --runInBand", "prepare": "npm run build", "prepublishOnly": "npm run lint && npm test" }, "repository": { "type": "git", "url": "git+https://github.com/isolomak/bencodec.git" }, "keywords": [ "bencode", "codec", "bittorrent", "torrent", "read", "create", "decode", "encode", "parse", "generate" ], "author": "isolomak", "license": "MIT", "bugs": { "url": "https://github.com/isolomak/bencodec/issues" }, "homepage": "https://github.com/isolomak/bencodec#readme", "devDependencies": { "@types/jest": "^29.5.14", "@types/node": "^18.19.111", "@typescript-eslint/eslint-plugin": "^8.34.0", "@typescript-eslint/parser": "^8.34.0", "eslint": "^9.28.0", "eslint-plugin-jest": "^28.13.5", "jest": "^29.3.1", "ts-jest": "^29.4.0", "typescript": "^5.8.3" }, "types": "./lib/index.d.ts", "files": [ "lib/**/*", "LICENSE.md" ] }