bitwise-operation
Version:
JavaScript's bitwise operation helper library.
76 lines (75 loc) • 1.74 kB
JSON
{
"author": {
"name": "Gwenael Walet",
"email": "gwenael.walet@yahoo.fr"
},
"devDependencies": {
"eslint": "1.10.x",
"qunit-cli": "~0.2.0",
"qunitjs": "^1.18.0"
},
"scripts": {
"tsc": "tsc",
"test": "npm run test-node && npm run lint",
"coverage": "nyc npm run test-node && nyc report",
"coveralls": "nyc npm run test-node && nyc report --reporter=text-lcov | coveralls",
"lint": "eslint bitwise.js",
"test-node": "qunit-cli test/tests.js",
"minify": "uglifyjs bitwise.js -c \"evaluate=false\" --comments \"/ .*/\" -m",
"build": "npm run minify -- --source-map bitwise-min.map --source-map-url \" \" -o bitwise-min.js"
},
"dependencies": {},
"description": "JavaScript's bitwise operation helper library.",
"directories": {},
"files": [
"lib/**/*",
"LICENSE"
],
"repository": {
"type": "git",
"url": "git+https://github.com/Relik77/bitwise-operation.git"
},
"keywords": [
"util",
"functional",
"server",
"client",
"browser",
"bitwise",
"binary",
"boolean",
"string",
"array",
"operation",
"compare",
"manipulate",
"bit",
"bits",
"and",
"nand",
"or",
"xor",
"xnor",
"not",
"toggle",
"swap",
"cardinality",
"change",
"calculation",
"math",
"performance"
],
"license": "MIT",
"main": "./lib/index.js",
"typings": "./lib/index.d.ts",
"maintainers": [
{
"name": "Gwenael Walet",
"email": "gwenael.walet@yahoo.fr"
}
],
"name": "bitwise-operation",
"optionalDependencies": {},
"readme": "README.md",
"version": "2.0.3"
}