-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.75 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.75 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
{
"name": "fandomscraper",
"version": "1.2.0",
"type": "module",
"description": "A package to scrap fandoms wikis characters page. Only scraps the characters info section and the list of all repertoried characters.",
"files": [
"dist",
"wikia"
],
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./wikia/*": "./wikia/*"
},
"module": "./dist/index.js",
"scripts": {
"clean": "rimraf dist",
"build": "pnpm clean && tsup && shx cp -r wikia dist/wikia && shx cp types/globals.d.ts dist/",
"prepublishOnly": "pnpm build",
"test": "npx jest --config=jest.config.cjs",
"test:smoke": "LIVE_FANDOM_SMOKE=1 npx jest --config=jest.config.cjs --runInBand spec/smoke/liveWikis.smoke.spec.ts",
"playground": "cd playground && pnpm dev",
"playground:install": "cd playground && pnpm install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dilaouid/FandomScraper.git"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"keywords": [
"fandom",
"wikia",
"wiki",
"scraper",
"characters",
"info",
"list"
],
"author": "dilaouid",
"license": "GPLv3",
"private": false,
"bugs": {
"url": "https://github.com/dilaouid/FandomScraper/issues"
},
"homepage": "https://github.com/dilaouid/FandomScraper#readme",
"dependencies": {
"jsdom": "^22.1.0"
},
"devDependencies": {
"@types/chai": "^4.3.20",
"@types/jest": "^29.5.14",
"@types/jsdom": "^21.1.7",
"chai": "^4.5.0",
"jest": "^29.7.0",
"rimraf": "^5.0.10",
"shx": "^0.3.4",
"ts-jest": "^29.2.5",
"tsup": "^8.3.6",
"typescript": "^5.7.3"
}
}