-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
84 lines (84 loc) · 1.82 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "localstore",
"version": "0.0.2",
"description": "API for working with localstorage via browerify providing a pullstream api",
"main": "index.js",
"scripts": {
"test": "node test.js"
},
"repository": "git://github.com/timmak/localstore",
"keywords": [
"localstorage",
"pullstream",
"stream"
],
"author": "Tim Pinington",
"license": "BSD",
"dependencies": {
"pull-stream": "~2.16.2"
},
"devDependencies": {
"tape": "~1.0.2"
},
"testling":{
"files": "test.js",
"browsers": [
"iexplore/6.0",
"iexplore/7.0",
"iexplore/8.0",
"iexplore/10.0",
"iexplore/9.0",
"chrome/10.0",
"chrome/11.0",
"chrome/12.0",
"chrome/13.0",
"chrome/14.0",
"chrome/15.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/3.0",
"firefox/3.5",
"firefox/3.6",
"firefox/4.0",
"firefox/5.0",
"firefox/6.0",
"firefox/7.0",
"firefox/8.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"
]
}
}