1 |
3a515b92
|
cagy
|
{
|
2 |
|
|
"name": "ieee754",
|
3 |
|
|
"description": "Read/write IEEE754 floating point numbers from/to a Buffer or array-like object",
|
4 |
|
|
"version": "1.1.13",
|
5 |
|
|
"author": {
|
6 |
|
|
"name": "Feross Aboukhadijeh",
|
7 |
|
|
"email": "feross@feross.org",
|
8 |
|
|
"url": "http://feross.org"
|
9 |
|
|
},
|
10 |
|
|
"contributors": [
|
11 |
|
|
"Romain Beauxis <toots@rastageeks.org>"
|
12 |
|
|
],
|
13 |
|
|
"devDependencies": {
|
14 |
|
|
"airtap": "0.1.0",
|
15 |
|
|
"standard": "*",
|
16 |
|
|
"tape": "^4.0.0"
|
17 |
|
|
},
|
18 |
|
|
"keywords": [
|
19 |
|
|
"IEEE 754",
|
20 |
|
|
"buffer",
|
21 |
|
|
"convert",
|
22 |
|
|
"floating point",
|
23 |
|
|
"ieee754"
|
24 |
|
|
],
|
25 |
|
|
"license": "BSD-3-Clause",
|
26 |
|
|
"main": "index.js",
|
27 |
|
|
"repository": {
|
28 |
|
|
"type": "git",
|
29 |
|
|
"url": "git://github.com/feross/ieee754.git"
|
30 |
|
|
},
|
31 |
|
|
"scripts": {
|
32 |
|
|
"test": "standard && npm run test-node && npm run test-browser",
|
33 |
|
|
"test-browser": "airtap -- test/*.js",
|
34 |
|
|
"test-browser-local": "airtap --local -- test/*.js",
|
35 |
|
|
"test-node": "tape test/*.js"
|
36 |
|
|
}
|
37 |
|
|
}
|