forked from max-mapper/csv-write-stream
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 834 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
{
"name": "csv-write-stream",
"version": "0.1.0",
"description": "A CSV encoder stream that produces properly escaped CSVs",
"main": "index.js",
"scripts": {
"test": "node test.js"
},
"repository": {
"type": "git",
"url": "[email protected]:maxogden/csv-write-stream.git"
},
"author": "max ogden",
"license": "BSD",
"dependencies": {
"through2": "~0.4.1"
},
"devDependencies": {
"tape": "~2.3.2",
"concat-stream": "~1.4.1"
},
"testling": {
"files": "test.js",
"browsers": [
"ie/8..latest",
"firefox/17..latest",
"firefox/nightly",
"chrome/22..latest",
"chrome/canary",
"opera/12..latest",
"opera/next",
"safari/5.1..latest",
"ipad/6.0..latest",
"iphone/6.0..latest",
"android-browser/4.2..latest"
]
}
}