UNPKG

1.89 kBJSONView Raw
1{
2 "name": "goldwasher",
3 "version": "7.0.0",
4 "description": "Extraction of text and related metadata.",
5 "main": "index.js",
6 "scripts": {
7 "test": "gulp"
8 },
9 "keywords": [
10 "text",
11 "extraction",
12 "mining",
13 "statistics",
14 "metadata",
15 "scraping",
16 "crawling"
17 ],
18 "author": "Alex Langberg",
19 "license": "MIT",
20 "devDependencies": {
21 "better-console": "^1.0.0",
22 "chai": "^3.5.0",
23 "chai-things": "^0.2.0",
24 "coveralls": "^2.11.9",
25 "gulp": "^3.9.1",
26 "gulp-batch": "^1.0.5",
27 "gulp-coveralls": "^0.1.4",
28 "gulp-istanbul": "^1.1.1",
29 "gulp-jsdoc": "^0.1.4",
30 "gulp-jshint": "^2.0.0",
31 "gulp-mocha": "^3.0.1",
32 "gulp-spawn-mocha": "^3.1.0",
33 "istanbul": "^0.4.3",
34 "jshint": "^2.9.2",
35 "jshint-stylish": "^2.1.0",
36 "mocha": "^3.2.0"
37 },
38 "config": {
39 "blanket": {
40 "pattern": [
41 "node-goldwasher/lib"
42 ]
43 }
44 },
45 "directories": {
46 "test": "test"
47 },
48 "dependencies": {
49 "cheerio": "^0.22.0",
50 "feed": "^0.3.0",
51 "joi": "^10.1.0",
52 "js2xmlparser": "^2.0.2",
53 "ramda": "^0.23.0",
54 "string": "^3.1.3",
55 "uuid": "^3.0.0",
56 "validator": "^6.2.1"
57 },
58 "repository": {
59 "type": "git",
60 "url": "https://github.com/alexlangberg/node-goldwasher.git"
61 },
62 "bugs": {
63 "url": "https://github.com/alexlangberg/node-goldwasher/issues"
64 },
65 "homepage": "https://github.com/alexlangberg/node-goldwasher",
66 "goldwasher": {
67 "options": {
68 "url": "string",
69 "selector": "string",
70 "search": "string[]",
71 "output": [
72 "json",
73 "xml",
74 "atom",
75 "rss"
76 ],
77 "limit": "integer",
78 "filterKeywords": "string[]",
79 "filterTexts": "string[]",
80 "filterLocale": [
81 "en"
82 ]
83 },
84 "defaults": {
85 "selector": "h1, h2, h3, h4, h5, h6, p",
86 "output": "json"
87 }
88 }
89}