UNPKG

cbor-react-native

Version:

Encode and parse data in the Concise Binary Object Representation (CBOR) data format (RFC8949).

73 lines (72 loc) 2.19 kB
{ "name": "cbor-react-native", "version": "0.0.1", "type": "module", "description": "Encode and parse data in the Concise Binary Object Representation (CBOR) data format (RFC8949).", "main": "./lib/cbor.js", "repository": { "type": "git", "url": "http://github.com/hildjj/node-cbor.git", "directory": "packages/cbor" }, "homepage": "https://github.com/hildjj/node-cbor/tree/main/packages/cbor", "directories": { "lib": "lib" }, "browser": { "fs": false }, "scripts": { "clean": "rimraf coverage .nyc_output/ docs", "lint": "eslint lib/*.js test/*.js", "coverage": "nyc -r lcov npm test", "test": "ava test/*.ava.js", "release": "npm version patch && git push --follow-tags && npm publish", "predev": "npm run coverage", "dev": "light-server -q -s. -w 'lib/*.js,test/*.js # npm run coverage' -o /coverage/lcov-report/index.html", "types": "tsc && npm run copy-types", "copy-types": "copyfiles \"./types/**\" \"../cbor-web/\"" }, "keywords": [ "coap", "cbor", "json", "rfc7049", "rfc8949" ], "author": { "name": "Joe Hildebrand", "email": "joe-github@cursive.net" }, "contributors": [ "Patrick Gansterer <paroga@paroga.com> (http://paroga.com/)", "Artyom Yagilev <github@scorpi.org> (http://scorpi.org/)", "Denis Lapaev <den@lapaev.me> (http://lapaev.me/)", "Ruben Bridgewater <ruben@bridgewater.de>", "Burt Harris <Burt_Harris_cbor@azxs.33mail.com>", "Jakub Arbet <hi@jakubarbet.me> (https://jakubarbet.me/)", "Rouzbeh Karimi <rouzweltt@gmail.com> (https://github.com/rouzwelt)", "Cristian Ramirez <cristiangp777@gmail.com>" ], "types": "./types/lib/cbor.d.ts", "dependencies": { "buffer": "^6.0.3", "nofilter-react-native": "^0.1.4", "react-native-path": "^0.0.5", "readable-stream": "^4.5.2" }, "devDependencies": { "@types/node": "^20", "@types/readable-stream": "^4.0.14", "ava": "^6.1.3", "bignumber.js": "^9.1.1", "garbage": "~0.0.0", "p-event": "^4.2.0", "rimraf": "^5.0.0" }, "license": "MIT", "readmeFilename": "README.md", "engines": { "node": ">=16" } }