-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
86 lines (86 loc) · 2.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
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
{
"name": "lodestone-news",
"version": "0.2.0",
"description": "FFXIV Lodestone news crawler",
"keywords": [
"ffxiv",
"final-fantasy-xiv",
"lodestone",
"news",
"crawler",
"scraper"
],
"type": "module",
"main": "dist/index.cjs",
"module": "dist/index.js",
"exports": {
"require": "./dist/index.cjs",
"import": "./dist/index.js",
"types": {
"require": "./dist/index.d.cts",
"import": "./dist/index.d.ts"
}
},
"typings": "dist/index.d.ts",
"files": [
"dist",
"LICENCE",
"README.md"
],
"scripts": {
"build": "yarn dev --minify",
"dev": "tsup src/index.ts --format cjs,esm --clean --sourcemap --dts",
"test": "yarn test:text",
"test:text": "nyc --reporter=text mocha ./__tests__",
"test:html": "nyc --reporter=html mocha ./__tests__",
"test:lcov": "nyc --reporter=lcov mocha ./__tests__",
"lint": "eslint src/**/*.ts __tests__/**/*.ts"
},
"author": {
"name": "Maiko Tan",
"email": "[email protected]",
"url": "https://github.com/MaikoTan"
},
"homepage": "https://github.com/AwesomeHamster/lodestone-news",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/AwesomeHamster/lodestone-news.git"
},
"bugs": {
"url": "https://github.com/AwesomeHamster/lodestone-news/issues"
},
"packageManager": "[email protected]",
"prettier": "@hamster-bot/prettier-config",
"devDependencies": {
"@hamster-bot/eslint-config": "*",
"@hamster-bot/prettier-config": "*",
"@istanbuljs/nyc-config-typescript": "^1.0.2",
"@types/chai": "^4.3.3",
"@types/mocha": "^9.1.1",
"@types/node": "^18.7.11",
"@typescript-eslint/eslint-plugin": "^5.34.0",
"@typescript-eslint/parser": "^5.34.0",
"chai": "^4.3.6",
"chai-each": "^0.0.1",
"cross-env": "^7.0.3",
"esbuild": "^0.18.20",
"esbuild-plugin-yaml": "^0.0.1",
"esbuild-register": "^3.3.3",
"eslint": "^8.22.0",
"eslint-import-resolver-typescript": "^3.5.0",
"fast-glob": "^3.2.11",
"js-yaml": "^4.1.0",
"mocha": "^10.0.0",
"nyc": "^15.1.0",
"prettier": "^2.7.1",
"source-map-support": "^0.5.21",
"ts-node": "^10.9.1",
"tsup": "^7.2.0",
"typescript": "^4.7.4"
},
"dependencies": {
"cheerio": "^1.0.0-rc.12"
},
"stableVersion": "0.0.1"
}