-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 1.38 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "jsonpull",
"version": "0.0.1",
"description": "JSON pull through stream",
"main": "index.js",
"scripts": {
"test": "node test.js"
},
"repository": "https://github.com/timmak/jsonpull",
"keywords": [
"json",
"pull-stream",
"pullstream"
],
"author": "Tim Pinington",
"license": "BSD",
"readmeFilename": "README.md",
"dependencies": {
"pull-stream": "~2.16.2"
},
"testling": {
"files": "test.js",
"browsers": [
"iexplore/7.0",
"iexplore/8.0",
"iexplore/10.0",
"iexplore/9.0",
"chrome/16.0",
"chrome/17.0",
"chrome/18.0",
"chrome/19.0",
"chrome/20.0",
"chrome/21.0",
"chrome/22.0",
"chrome/23.0",
"chrome/24.0",
"chrome/25.0",
"firefox/9.0",
"firefox/10.0",
"firefox/11.0",
"firefox/12.0",
"firefox/13.0",
"firefox/14.0",
"firefox/15.0",
"firefox/16.0",
"firefox/17.0",
"firefox/18.0",
"firefox/19.0",
"opera/10.0",
"opera/10.5",
"opera/11.0",
"opera/11.5",
"opera/11.6",
"opera/12.0",
"safari/4.0",
"safari/5.0.5",
"safari/5.1",
"firefox/nightly",
"opera/next",
"chrome/canary",
"iphone/6.0",
"ipad/6.0",
"safari/6.0",
"android-browser/4.2"
]
},
"devDependencies": {
"tape": "~1.0.2"
}
}