forked from indix/web-auto-extractor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.32 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "web-auto-extractor",
"version": "1.0.1",
"description": "Automatically extracts structured information from webpages",
"main": "dist/index.js",
"scripts": {
"build": "babel src -d dist",
"test": "mocha --recursive --compilers js:babel-register",
"lint": "standard",
"dev": "nodemon --exec npm run lint",
"prepublish": "npm run lint && npm run test && npm run build"
},
"engines": {
"node": ">=4.4"
},
"license": "MIT",
"dependencies": {
"babel-polyfill": "^6.8.0",
"cheerio": "^0.22.0",
"htmlparser2": "^3.9.1",
"lodash": "^4.12.0"
},
"devDependencies": {
"babel-cli": "^6.8.0",
"babel-eslint": "^6.0.4",
"babel-preset-es2015": "^6.6.0",
"babel-preset-stage-0": "^6.5.0",
"chai": "^3.5.0",
"mocha": "^2.4.5",
"nodemon": "^1.9.2",
"sinon": "^1.17.4",
"standard": "^7.0.1"
},
"standard": {
"parser": "babel-eslint",
"ignore": [
"tonicExample.js"
]
},
"keywords": [
"crawler",
"parser",
"html parser",
"schema.org",
"microdata",
"rdfa",
"jsonld",
"seo"
],
"repository": {
"type": "git",
"url": "https://github.com/ind9/web-auto-extractor.git"
},
"bugs": {
"url": "https://github.com/ind9/web-auto-extractor/issues"
},
"tonicExampleFilename": "tonicExample.js"
}