forked from feross/buffer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.21 KB
/
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
45
46
47
48
49
50
51
52
53
54
55
{
"name": "buffer",
"description": "Node.js Buffer API, for the browser",
"version": "2.1.5",
"author": "Feross Aboukhadijeh <[email protected]> (http://feross.org/)",
"bugs": {
"url": "https://github.com/feross/buffer/issues"
},
"contributors": [
"Romain Beauxis <[email protected]>",
"James Halliday <[email protected]>"
],
"dependencies": {
"base64-js": "~0.0.4",
"ieee754": "~1.1.1"
},
"devDependencies": {
"benchmark": "*",
"browserify": "3.x",
"tape": "*"
},
"homepage": "http://feross.org",
"keywords": [
"buffer",
"browserify",
"compatible",
"browser",
"arraybuffer",
"uint8array",
"dataview"
],
"license": "MIT",
"main": "index.js",
"repository": {
"type": "git",
"url": "git://github.com/feross/buffer.git"
},
"scripts": {
"test": "tape test/*.js",
"prepublish": "./bundle.sh",
"perf": "cd perf/solo && browserify --debug readUInt32BE.js > bundle.js && open index.html"
},
"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"
]
}
}