-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
61 lines (61 loc) · 1.39 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
60
61
{
"name": "url-metadata-parser",
"version": "1.0.8",
"description": "Request an http(s) url and scrape its metadata",
"main": "dist/index.js",
"scripts": {
"format": "./node_modules/.bin/prettier --write \"**/*.ts\"",
"test": "./node_modules/.bin/jest",
"coverage": "./node_modules/.bin/jest --coverage --testPathIgnorePatterns dist",
"post-coverage": "./node_modules/.bin/nyc report --reporter=json > coverage/coverage.json"
},
"keywords": [
"metadata",
"metatag",
"html",
"tag",
"tags",
"meta"
],
"types": "dist/index.d.ts",
"author": "a@hax0r.info",
"license": "ISC",
"dependencies": {
"axios": "^0.19.0",
"iconv": "^2.3.2",
"iconv-lite": "^0.6.0",
"node-html-parser": "^1.1.12",
"rxjs": "^6.3.3",
"ts-node": "^8.0.2"
},
"devDependencies": {
"@types/axios": "0.14.0",
"@types/iconv": "2.1.16",
"@types/iconv-lite": "0.0.1",
"@types/jest": "26.0.5",
"jest": "24.7.1",
"prettier": "1.19.1",
"ts-jest": "24.3.0",
"typescript": "3.9.2"
},
"jest": {
"transform": {
"^.+\\.ts$": "ts-jest"
},
"testRegex": "\\.spec\\.ts$",
"collectCoverage": true,
"moduleFileExtensions": [
"ts",
"js"
],
"globals": {
"ts-jest": {
"enableTsDiagnostics": true
}
},
"testPathIgnorePatterns": [
"./dist",
"./node_modules"
]
}
}