https://github.com/ContentMine/quickscrape
Raw File
Tip revision: 04223ae3ffab58dc8fa1be108987116b6dd47549 authored by Richard Smith-Unna on 14 June 2015, 12:01:41 UTC
Release v0.4.3.
Tip revision: 04223ae
package.json
{
  "name": "quickscrape",
  "description": "A command line scraping tool for the modern web",
  "version": "0.4.3",
  "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": {
    "chalk": "~1.0.0",
    "commander": "~2.7.1",
    "moment": "~2.10.2",
    "thresher": "^0.1.7",
    "which": "~1.0.5",
    "winston": "~1.0.0"
  },
  "bin": {
    "quickscrape": "bin/quickscrape.js"
  },
  "devDependencies": {
    "grunt": "~0.4.5",
    "coveralls": "~2.11.2",
    "mocha-lcov-reporter": "0.0.2",
    "should": "~4.0.0",
    "istanbul": "~0.3.13",
    "mocha": "~2.2.4"
  },
  "keywords": [
    "scraping",
    "datamining",
    "contentmining"
  ]
}
back to top