Skip to content

Commit

Permalink
Reformatted package.json via npm init, added test command, setup expr…
Browse files Browse the repository at this point in the history
…esso as a local dev dependency.
  • Loading branch information
timoxley committed Mar 30, 2012
1 parent d714606 commit 6ed7196
Showing 1 changed file with 29 additions and 15 deletions.
44 changes: 29 additions & 15 deletions package.json
@@ -1,17 +1,31 @@
{
"name": "csv",
"version": "0.0.11",
"description": "CSV parser with simple api, full of options and tested against large datasets.",
"author": "David Worms <david@adaltas.com>",
"contributors": [
{ "name": "David Worms", "email": "david@adaltas.com" },
{ "name": "Will White", "email": "https://github.com/willwhite" },
{ "name": "Justin Latimer", "email": "https://github.com/justinlatimer" }
],
"engines": { "node": ">= 0.1.90" },
"keywords": ["parser", "csv"],
"repository": {
"type" : "git",
"url" : "https://github.com/wdavidw/node-csv-parser.git"
}
"name": "csv",
"version": "0.0.11",
"description": "CSV parser with simple api, full of options and tested against large datasets.",
"author": "David Worms <david@adaltas.com>",
"contributors": [
"David Worms <david@adaltas.com>",
"Will White <https://github.com/willwhite>",
"Justin Latimer <https://github.com/justinlatimer>"
],
"engines": {
"node": ">= 0.1.90"
},
"keywords": [
"parser",
"csv"
],
"repository": {
"type": "git",
"url": "git://github.com/wdavidw/node-csv-parser.git"
},
"devDependencies": {
"expresso": "~0.9.2"
},
"dependencies": {},
"optionalDependencies": {},
"scripts": {
"test": "./node_modules/.bin/expresso ./test"
},
"homepage": "https://github.com/wdavidw/node-csv-parser"
}

0 comments on commit 6ed7196

Please sign in to comment.