Skip to content

Commit

Permalink
first commit
Browse files Browse the repository at this point in the history
  • Loading branch information
xissy committed Oct 4, 2013
0 parents commit 0bacf2d
Show file tree
Hide file tree
Showing 5 changed files with 70 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .gitignore
@@ -0,0 +1,20 @@
lib-cov
*.seed
*.log
*.csv
*.dat
*.out
*.pid
*.gz

pids
logs
results

node_modules
npm-debug.log

sftp-config.json

*.un~
.DS_Store
8 changes: 8 additions & 0 deletions README.md
@@ -0,0 +1,8 @@
# node-amazon-reviews
> A node.js module to crawl product reviews from Amazon.
## Installation

## Usages

## License
3 changes: 3 additions & 0 deletions index.js
@@ -0,0 +1,3 @@
require('coffee-script');

module.exports = require('./lib/index');
Empty file added lib/index.coffee
Empty file.
39 changes: 39 additions & 0 deletions package.json
@@ -0,0 +1,39 @@
{
"name": "amazon-reviews",
"version": "0.0.1",
"description": "A node.js module to crawl product reviews from Amazon.",
"main": "index.js",
"dependencies": {
"coffee-script": "~1.6.3",
"async": "~0.1.22",
"request": "~2.16.6",
"cheerio": "~0.10.5",
"node-uuid": "~1.4.0",
"crawl-baby": "~0.0.4"
},
"devDependencies": {
"should": "~1.0.0",
"mocha": "~1.3.0"
},
"directories": {
"test": "test"
},
"scripts": {
"test": "mocha --compilers coffee:coffee-script --globals lw --recursive ./test -t 10000"
},
"repository": {
"type": "git",
"url": "https://github.com/xissy/node-amazon-reviews.git"
},
"keywords": [
"amazon",
"product",
"review",
"crawl"
],
"author": "Taeho Kim <xissysnd@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/xissy/node-amazon-reviews/issues"
}
}

0 comments on commit 0bacf2d

Please sign in to comment.