-
Notifications
You must be signed in to change notification settings - Fork 44
/
package.json
59 lines (59 loc) · 1.34 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
59
{
"name": "html-metadata",
"version": "2.0.1",
"description": "Scrapes metadata of several different standards",
"main": "index.js",
"dependencies": {
"bluebird": "^3.7.1",
"cheerio": "1.0.0-rc.12",
"microdata-node": "^0.2.1",
"preq": "^0.5.12"
},
"devDependencies": {
"chai": "^4.3.0",
"eslint": "8.56.0",
"eslint-config-wikimedia": "0.27.0",
"istanbul": "^0.4.5",
"mocha": "^10.3.0",
"mocha-lcov-reporter": "^1.3.0",
"nock": "^13.3.0"
},
"scripts": {
"test": "npm run lint && mocha",
"lint": "eslint --cache --max-warnings 0 --ext .js,.json .",
"lint:fix": "eslint --fix .",
"coverage": "istanbul cover _mocha -- -R spec"
},
"engines": {
"node": ">=16"
},
"keywords": [
"bepress",
"coins",
"dublin core",
"eprints",
"highwire press",
"json-ld",
"open graph",
"metadata",
"microdata",
"prism",
"twitter cards",
"web scraper"
],
"repository": {
"type": "git",
"url": "https://github.com/wikimedia/html-metadata.git"
},
"author": "Marielle Volz <[email protected]>",
"contributors": [
"Krzysztof Zbudniewek <[email protected]>",
"Geoffrey Mon <[email protected]>",
"Scimonster <[email protected]>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/wikimedia/html-metadata/issues"
},
"homepage": "https://github.com/wikimedia/html-metadata"
}