-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
34 lines (34 loc) · 920 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
{
"name": "dexscreener-api",
"version": "0.0.5",
"description": "A typescript wrapper around the dexscreener API",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"prepublish": "tsc",
"test": "jest",
"test:debug": "node --inspect-brk node_modules/.bin/jest --runInBand",
"lint": "eslint . --ext .ts"
},
"repository": {
"type": "git",
"url": "https://github.com/hedgey-finance/dexscreener-api.git"
},
"homepage": "https://github.com/hedgey-finance/dexscreener-api",
"keywords": [],
"license": "ISC",
"devDependencies": {
"@types/jest": "^27.4.1",
"@typescript-eslint/eslint-plugin": "^5.18.0",
"@typescript-eslint/parser": "^5.18.0",
"eslint": "^8.12.0",
"jest": "^27.5.1",
"nodemon": "^2.0.15",
"ts-jest": "^27.1.4",
"ts-node": "^10.7.0",
"typescript": "^4.6.3"
},
"dependencies": {
"axios": "^0.26.1"
}
}