-
Notifications
You must be signed in to change notification settings - Fork 53
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 820 Bytes
/
Copy pathpackage.json
File metadata and controls
25 lines (25 loc) · 820 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
{
"name": "ya-csv",
"description": "CSV parser and generator for Node.js",
"version": "1.0.0",
"keywords": [ "node", "csv", "parser" ],
"author": "Pavel Kolesnikov <pavel.kolesnikov@gmail.com>",
"licenses": [
{ "type": "MIT", "url": "https://raw.github.com/koles/ya-csv/master/LICENSE" }
],
"repository": {
"type": "git",
"url": "http://github.com/koles/ya-csv"
},
"bugs": { "url": "http://github.com/koles/ya-csv/issues" },
"directories": { "lib": "./lib", "test": "./test" },
"bin" : { "csv-reshuffle" : "./bin/reshuffle.js" },
"dependencies": {},
"scripts": {
"test": "node test/run.js",
"bench": "node bench/generate-all-fixtures.js && node bench/run.js",
"bench:compare": "node bench/compare.js"
},
"engines": { "node": ">=0.2.3" },
"main": "lib/ya-csv"
}