-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
executable file
·51 lines (51 loc) · 1.31 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
{
"name": "unionpedia-extractor",
"version": "3.1.0",
"description": "Extract incoming and outgoing relations for a concept from unionpedia.org",
"main": "dist/unionpedia-extractor.cjs.js",
"module": "dist/unionpedia-extractor.es.js",
"types": "dist/extractor.cheerio.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "vite build -c vite.lib.config.ts",
"test": "jest test/extractor.test.ts",
"test:jsdom": "jest test/extractor.jsdom.test.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mastercuber/unionpedia-extractor.git"
},
"keywords": [
"unionpedia",
"extract",
"relations",
"concept"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/mastercuber/unionpedia-extractor/issues"
},
"homepage": "https://github.com/mastercuber/unionpedia-extractor#readme",
"engines": {
"node": ">= 15"
},
"publishConfig": {
"registry": "https://repo.avensio.de/repository/npm-hosted/"
},
"dependencies": {
"cheerio": "^1.0.0-rc.12",
"follow-redirects": "^1.15.1",
"lru-cache": "^7.14.1"
},
"devDependencies": {
"@types/follow-redirects": "^1.14.1",
"@types/jest": "^29.2.5",
"jsdom": "^21.0.0",
"ts-jest": "^29.0.5",
"tslib": "^2.5.0",
"vite": "^4.0.4",
"vite-plugin-dts": "^1.7.1"
}
}