https://github.com/ContentMine/quickscrape
Raw File
Tip revision: 76f5bce5b050441a9fa52a2ea3ca1dc8b54b4656 authored by Richard Smith-Unna on 14 August 2014, 08:27:11 UTC
Release v0.2.8.
Tip revision: 76f5bce
package.json
{
  "name": "quickscrape",
  "description": "A command line scraping tool for the modern web",
  "version": "0.2.8",
  "homepage": "https://github.com/ContentMine/quickscrape",
  "author": {
    "name": "Richard Smith-Unna",
    "email": "rds45@cam.ac.uk",
    "url": "http://contentmine.org"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/ContentMine/quickscrape.git"
  },
  "bugs": {
    "url": "https://github.com/ContentMine/quickscrape/issues"
  },
  "licenses": [
    {
      "type": "MIT",
      "url": "https://github.com/ContentMine/quickscrape/blob/master/LICENSE"
    }
  ],
  "main": "lib/quickscrape",
  "engines": {
    "node": ">= 0.8.14"
  },
  "scripts": {
    "test": "mocha",
    "coverage": "istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec",
    "coveralls": "istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage"
  },
  "dependencies": {
    "commander": "~2.2.0",
    "winston": "~0.7.3",
    "which": "~1.0.5",
    "thresher": "~0.0.7"
  },
  "bin": {
    "quickscrape": "bin/quickscrape.js"
  },
  "devDependencies": {
    "grunt": "~0.4.4",
    "coveralls": "~2.10.0",
    "mocha-lcov-reporter": "0.0.1",
    "should": "~4.0.0",
    "istanbul": "~0.2.10",
    "mocha": "~1.20.0"
  },
  "keywords": [
    "scraping",
    "datamining",
    "contentmining"
  ]
}
back to top