bit-set-js
Version:
JavaScript implementation of bit arrays
38 lines (37 loc) • 876 B
JSON
{
"name": "bit-set-js",
"description": "JavaScript implementation of bit arrays",
"version": "0.1.0",
"author": "Maximiliano Benedetto <mbenedetto212@gmail.com> (http://www.mbenedetto.com)",
"repository": {
"type": "git",
"url": "git@github.com:maxijb/BitSetJS.git"
},
"keywords": ["bit array", "bit-array", "bit vector", "bitset", "bitmap", "bitstring"],
"main": "./lib/BitSet.js",
"directories": {
"lib": "./lib"
},
"devDependencies": {
"babel-jest": "*",
"babel-preset-es2015": "^6.3.13",
"jest-cli": "*"
},
"scripts": {
"test": "jest"
},
"jest": {
"scriptPreprocessor": "node_modules/babel-jest",
"testFileExtensions": [
"js"
],
"moduleFileExtensions": [
"js",
"json"
],
"testDirectoryName": "spec"
},
"babel": {
"presets": ["es2015"]
}
}