-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 987 Bytes
/
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
{
"name": "pokeapi-enhanced",
"version": "2.2.0",
"type": "module",
"description": "A better, easier, and enhanced library that allows you to fetch, display, and control how you fetch pokemons.",
"main": "dist/index.js",
"types": "dist/types/index.d.ts",
"typings": "dist/types/index.d.ts",
"files": [
"dist"
],
"scripts": {
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js"
},
"author": "Ever Tovar",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Yurem1/PokeAPI-Enhanced"
},
"keywords": [
"PokeAPI",
"Pokémon",
"Utility",
"Discord"
],
"devDependencies": {
"@babel/core": "^7.24.0",
"@babel/preset-env": "^7.24.0",
"@babel/preset-typescript": "^7.23.3",
"@jest/globals": "^29.7.0",
"@types/jest": "^29.5.12",
"babel-jest": "^29.7.0",
"ts-jest": "^29.1.2",
"typescript": "^5.4.2"
},
"dependencies": {
"ts-node": "^10.9.2"
}
}