-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 876 Bytes
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 876 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
{
"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"]
}
}