-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.22 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
{
"name": "pokedex-v2",
"version": "1.0.6",
"description": "A nodejs library to get all the info from a pokedex!",
"author": "scaranaraa",
"homepage": "https://scaranaraa.github.io/pokedex/",
"main": "dist/index.js",
"license": "MIT",
"type": "module",
"typings": "./index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/scaranaraa/pokedex.git"
},
"keywords": [
"pokemon",
"pokedex",
"nodejs"
],
"bugs": {
"url": "https://github.com/scaranaraa/pokedex/issues"
},
"packageManager": "yarn@4.1.1",
"devDependencies": {
"@types/node": "^20.12.7",
"@typescript-eslint/eslint-plugin": "^7.7.1",
"@typescript-eslint/parser": "^7.7.1",
"eslint": "^8.4.1",
"eslint-plugin-mocha": "^10.0.3",
"jsdoc": "^4.0.2",
"jsdoc-baseline": "^0.1.5",
"mocha": "^9.0.2",
"typescript": "^5.4.5",
"clean-jsdoc-theme": "^4.2.18"
},
"scripts": {
"lint": "eslint --ext .js,.jsx,.ts,.tsx --ignore-path .gitignore .",
"lint:fix": "eslint --ext .js,.jsx,.ts,.tsx --ignore-path .gitignore . --fix",
"generate-docs": "jsdoc --configure jsdoc.json --verbose"
},
"dependencies": {
"csv-parser": "^3.0.0",
"fs": "^0.0.1-security"
}
}