forked from feross/ieee754
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 876 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
{
"name": "ieee754",
"version": "1.1.3",
"description": "Read/write IEEE754 floating point numbers from/to a Buffer or array-like object",
"main": "index.js",
"dependencies": {},
"devDependencies": {
"tape": "*"
},
"repository": {
"type": "git",
"url": "git://github.com/feross/ieee754.git"
},
"testling": {
"files": "test/*.js",
"browsers": [
"ie/6..latest",
"chrome/4..latest",
"firefox/3..latest",
"safari/5.1..latest",
"opera/11.0..latest",
"iphone/6",
"ipad/6"
]
},
"keywords": [
"ieee754",
"IEEE 754",
"floating point",
"buffer",
"convert"
],
"author": "Feross Aboukhadijeh <[email protected]> (http://feross.org/)",
"contributors": [
"Romain Beauxis <[email protected]>"
],
"scripts": {
"test": "tape test/*.js"
},
"license": "MIT"
}