1 |
3a515b92
|
cagy
|
{
|
2 |
|
|
"name": "is-buffer",
|
3 |
|
|
"description": "Determine if an object is a Buffer",
|
4 |
|
|
"version": "1.1.6",
|
5 |
|
|
"author": {
|
6 |
|
|
"name": "Feross Aboukhadijeh",
|
7 |
|
|
"email": "feross@feross.org",
|
8 |
|
|
"url": "http://feross.org/"
|
9 |
|
|
},
|
10 |
|
|
"bugs": {
|
11 |
|
|
"url": "https://github.com/feross/is-buffer/issues"
|
12 |
|
|
},
|
13 |
|
|
"dependencies": {},
|
14 |
|
|
"devDependencies": {
|
15 |
|
|
"standard": "*",
|
16 |
|
|
"tape": "^4.0.0",
|
17 |
|
|
"zuul": "^3.0.0"
|
18 |
|
|
},
|
19 |
|
|
"keywords": [
|
20 |
|
|
"buffer",
|
21 |
|
|
"buffers",
|
22 |
|
|
"type",
|
23 |
|
|
"core buffer",
|
24 |
|
|
"browser buffer",
|
25 |
|
|
"browserify",
|
26 |
|
|
"typed array",
|
27 |
|
|
"uint32array",
|
28 |
|
|
"int16array",
|
29 |
|
|
"int32array",
|
30 |
|
|
"float32array",
|
31 |
|
|
"float64array",
|
32 |
|
|
"browser",
|
33 |
|
|
"arraybuffer",
|
34 |
|
|
"dataview"
|
35 |
|
|
],
|
36 |
|
|
"license": "MIT",
|
37 |
|
|
"main": "index.js",
|
38 |
|
|
"repository": {
|
39 |
|
|
"type": "git",
|
40 |
|
|
"url": "git://github.com/feross/is-buffer.git"
|
41 |
|
|
},
|
42 |
|
|
"scripts": {
|
43 |
|
|
"test": "standard && npm run test-node && npm run test-browser",
|
44 |
|
|
"test-browser": "zuul -- test/*.js",
|
45 |
|
|
"test-browser-local": "zuul --local -- test/*.js",
|
46 |
|
|
"test-node": "tape test/*.js"
|
47 |
|
|
},
|
48 |
|
|
"testling": {
|
49 |
|
|
"files": "test/*.js"
|
50 |
|
|
}
|
51 |
|
|
}
|