-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 793 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 793 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
{
"name": "bitbuff",
"version": "1.0.6",
"description": "A binary buffer for manipulating bits",
"main": "dist/index.js",
"scripts": {
"test": "mocha -r ts-node/register tests/**/*.test.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jamievaughan/bitbuff.git"
},
"keywords": [
"bitbuffer",
"bit",
"binary",
"array",
"bits",
"bit",
"buffer"
],
"author": "Jamie Vaughan",
"license": "MIT",
"bugs": {
"url": "https://github.com/jamievaughan/bitbuff/issues"
},
"homepage": "https://github.com/jamievaughan/bitbuff#readme",
"devDependencies": {
"@types/chai": "^4.1.4",
"@types/mocha": "^5.2.5",
"mocha": "^5.2.0",
"chai": "^4.1.2",
"ts-node": "^7.0.0"
},
"dependencies": {}
}