This repository was archived by the owner on Sep 16, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
102 lines (102 loc) · 2.6 KB
/
Copy pathpackage.json
File metadata and controls
102 lines (102 loc) · 2.6 KB
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "@findbycolor/microdata-extractor",
"version": "0.2.0",
"description": "Web Crawler & Microdata Extractor",
"main": "./bin/cli.js",
"license": "unlicensed",
"publishConfig": {
"registry": "https://npm.pkg.github.com"
},
"bin": {
"extract": "./bin/cli.js"
},
"engines": {
"node": ">=14.17.3",
"npm": ">= 6.14.13"
},
"scripts": {
"build": "babel src -d dist",
"test": "mocha --recursive --require babel-core/register",
"test:single": "mocha --require babel-core/register",
"lint": "standard --fix",
"dev": "nodemon --watch src --watch bin --watch commands --exec npm run build",
"prepublish": "npm run lint && npm run test && npm run build",
"postinstall": "npm run build",
"help": "node node_modules/npm-scripts-help"
},
"repository": {
"type": "git",
"url": "git+https://github.com/FindByColor/microdata-extractor.git"
},
"bugs": {
"url": "https://github.com/FindByColor/microdata-extractor/issues"
},
"keywords": [
"crawler",
"parser",
"html parser",
"schema.org",
"microdata",
"rdfa",
"jsonld",
"seo"
],
"author": {
"name": "Peter Schmalfeldt",
"email": "peter@findbycolor.com",
"url": "https://findbycolor.com"
},
"homepage": "https://github.com/FindByColor/microdata-extractor#readme",
"dependencies": {
"babel-polyfill": "^6.26.0",
"chalk": "^4.1.2",
"cheerio": "^1.0.0-rc.10",
"htmlparser2": "^7.1.2",
"md5": "^2.3.0",
"rimraf": "^3.0.2",
"sanitize-html": "^2.5.1",
"uuid": "^8.3.2",
"yargs": "^17.2.1"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^10.1.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"chai": "^4.3.4",
"mocha": "^9.1.2",
"nodemon": "^2.0.13",
"npm-scripts-help": "^0.8.0",
"pre-commit": "^1.2.2",
"sinon": "^11.1.2",
"standard": "^16.0.4"
},
"pre-commit": [
"lint",
"test"
],
"scriptshelp": {
"help-message": "Microdata Extractor Commands:",
"help": {
"Description": "Generates List of NPM Scripts you can run"
},
"build": {
"Description": "Build & Compile Microdata Extractor"
},
"test": {
"Description": "Perform Unit Tests"
},
"lint": {
"Description": "Tests Javascript Code against Linting Rules"
},
"dev": {
"Description": "Watches for Code Changes and runs linter"
},
"prepublish": {
"Description": "Automatically Runs before: npm publish"
},
"postinstall": {
"Description": "Automatically Runs after: npm install"
}
}
}