-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
44 lines (44 loc) · 941 Bytes
/
package.json
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
38
39
40
41
42
43
44
{
"name": "buffer-reverse",
"version": "1.0.1",
"description": "A lite module for reverse-operations on buffers",
"files": [
"index.js",
"inplace.js"
],
"main": "index.js",
"scripts": {
"standard": "standard",
"test": "npm run-script standard && npm run-script unit",
"unit": "tape test/*.js"
},
"repository": {
"type": "git",
"url": "https://github.com/crypto-browserify/buffer-reverse.git"
},
"bugs": {
"url": "https://github.com/crypto-browserify/buffer-reverse/issues"
},
"homepage": "https://github.com/crypto-browserify/buffer-reverse",
"keywords": [
"bits",
"reverse",
"buffer",
"buffer-reverse",
"crypto",
"inline",
"math",
"memory",
"performance",
"reverse"
],
"author": "Daniel Cousens",
"license": "MIT",
"devDependencies": {
"standard": "*",
"tape": "*"
},
"dependencies": {
"safe-buffer": "^5.1.2"
}
}