UNPKG

chai-bytes

Version:

Chai assertions for byte arrays equality

61 lines (60 loc) 1.52 kB
{ "name": "chai-bytes", "version": "0.1.2", "description": "Chai assertions for byte arrays equality", "repository": { "type": "git", "url": "https://github.com/slowli/chai-bytes.git" }, "bugs": { "url": "https://github.com/slowli/chai-bytes/issues" }, "engines": { "node": ">=4" }, "main": "index.js", "types": "index.d.ts", "files": [ "index.js", "index.d.ts" ], "scripts": { "lint": "semistandard", "test": "mocha test --exclude test/types.js", "test-browser": "karma start", "test-ts": "tsc -p test && node test/types.js", "coverage": "karma start && ./node_modules/.bin/lcov-result-merger 'coverage/*/lcov.info' coverage/lcov.info" }, "keywords": [ "chai", "chai-plugin", "assertions", "testing", "buffers", "uint8array" ], "author": "Alex Ostrovski <ostrovski.alex@gmail.com>", "license": "Apache-2.0", "devDependencies": { "@types/chai": "^4.1.7", "babel-plugin-istanbul": "^4.1.4", "babelify": "^7.3.0", "browserify": "^16.2.3", "chai": "^4.0.2", "coveralls": "^3.0.2", "karma": "^3.1.4", "karma-browserify": "^6.0.0", "karma-coverage": "^1.1.2", "karma-firefox-launcher": "^1.1.0", "karma-mocha": "^1.3.0", "karma-mocha-reporter": "^2.2.3", "karma-phantomjs-launcher": "^1.0.4", "lcov-result-merger": "^1.2.0", "mocha": "^5.2.0", "semistandard": "^11.0.0", "typescript": "^3.2.2" }, "peerDependencies": { "chai": ">=2 <5" } }