-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathpackage.json
48 lines (48 loc) · 1.1 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
{
"name" : "buffer-browserify",
"version" : "0.2.5",
"description" : "buffer module compatibility for browserify",
"main" : "index.js",
"browserify" : "index.js",
"directories" : {
"test" : "test"
},
"dependencies" : {
"base64-js" : "0.0.8"
},
"devDependencies" : {
"tape" : "~2.1.0",
"tap" : "~0.4.4"
},
"repository" : {
"type" : "git",
"url" : "http://github.com/toots/buffer-browserify.git"
},
"testling" : {
"files" : "test/*.js",
"browsers" : [
"ie/6..latest",
"chrome/20..latest",
"firefox/10..latest",
"safari/latest",
"opera/11.0..latest",
"iphone/6", "ipad/6"
]
},
"keywords" : [
"buffer",
"browserify",
"compatible",
"meatless",
"browser"
],
"author" : {
"name" : "Romain Beauxis",
"email" : "[email protected]"
},
"scripts" : {
"test" : "tap test/*.js"
},
"license" : "MIT/X11",
"engine" : { "node" : ">=0.6" }
}