forked from samuraitruong/coingecko-api-v3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.81 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
{
"name": "coingecko-api-v3",
"version": "0.0.28",
"description": "The nodejs api library for accessing coingecko api v3 , develop with typescript",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"lint": "eslint . --ext .ts --fix",
"build": "rm -rf ./dist && tsc",
"dev": "ts-node ./src/index",
"test": "jest --runInBand --verbose --silent=false",
"doc-gen": "rm -rf ./dist && typedoc --out ./docs src/",
"prepublish": "npm run build",
"publish-doc": "npm run doc-gen && gh-pages -d ./docs",
"prepare": "husky install",
"release": "standard-version"
},
"repository": {
"type": "git",
"url": "git+https://github.com/samuraitruong/coingecko-api-v3.git"
},
"keywords": [
"coingecko",
"api",
"cryptocurrency"
],
"author": "[email protected]",
"license": "MIT",
"bugs": {
"url": "https://github.com/samuraitruong/coingecko-api-v3/issues"
},
"homepage": "https://samuraitruong.github.io/coingecko-api-v3",
"devDependencies": {
"@commitlint/cli": "^17.4.2",
"@commitlint/config-conventional": "^17.4.2",
"@types/jest": "^29.2.5",
"@types/node": "^16.18.11",
"@typescript-eslint/eslint-plugin": "^5.48.1",
"@typescript-eslint/parser": "^5.48.1",
"eslint": "^8.31.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-import": "^2.27.4",
"eslint-plugin-jest": "^27.2.1",
"gh-pages": "^3.2.3",
"husky": "^8.0.3",
"jest": "^29.3.1",
"lint-staged": "^13.1.0",
"standard-version": "^9.5.0",
"ts-jest": "^29.0.4",
"ts-node": "^10.9.1",
"typedoc": "^0.23.24",
"typescript": "^4.9.4"
},
"lint-staged": {
"*.ts": "eslint --cache --fix"
},
"packageManager": "[email protected]",
"dependencies": {
"https": "^1.0.0"
}
}