-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 796 Bytes
/
Copy pathpackage.json
File metadata and controls
32 lines (32 loc) · 796 Bytes
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
{
"name": "jstocsv",
"version": "0.1.2",
"description": "micro csv writer",
"main": "jstocsv.js",
"scripts": {
"test": "nyc --reporter=lcov tape tests/*.test.js",
"coverage": "nyc --reporter=text-lcov report | coveralls"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MorganConrad/JStoCSV.git"
},
"keywords": [
"csv",
"writer",
"javascript"
],
"devDependencies": {
"coveralls": "^3.1.0",
"csv-spectrum": "^1.0.0",
"nyc": "^15.1.0",
"tape": "^5.1"
},
"files": [],
"author": "Morgan Conrad <flyingspaniel@gmail.com> (http://flyingspaniel.com/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/MorganConrad/JStoCSV/issues"
},
"homepage": "https://github.com/MorganConrad/JStoCSV#readme"
}