-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
88 lines (88 loc) · 2.09 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
87
88
{
"name": "coinmarketcap-api-typescript",
"version": "0.0.4",
"description": "CoinMarketCap API wrapper for typescript",
"license": "MIT",
"repository": {
"url": "https://github.com/jfkz/coinmarketcap-api-typescript",
"type": "git"
},
"homepage": "https://github.com/jfkz/coinmarketcap-api-typescript",
"bugs": "https://github.com/jfkz/coinmarketcap-api-typescript",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/"
],
"scripts": {
"test": "jest",
"test:cov": "npm run test -- --coverage",
"build": "tsc",
"build:watch": "tsc -w",
"lint": "eslint --fix .",
"start": "npm run test",
"pretest": "npm run lint",
"docs": "npm run docs:readme && npm run docs:html",
"docs:readme": "documentation readme index.js --section=API",
"docs:html": "documentation build index.js -f html -o docs"
},
"jest": {
"setupFilesAfterEnv": [
"./test.js"
]
},
"author": "mike",
"contributors": [
"Abhinav Kasamsetty",
"Tiaan du Plessis"
],
"devDependencies": {
"@types/node": "^18.16.0",
"@types/node-fetch": "^2.6.11",
"@types/qs": "^6.9.15",
"@typescript-eslint/eslint-plugin": "^6.4.0",
"documentation": "^14.0.0",
"dotenv": "^16.0.0",
"eslint": "^8.24.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard-with-typescript": "^43.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.3.0",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-promise": "^6.0.1",
"husky": "^3.0.0",
"jest": "^29.0.0",
"jest-chain": "^1.1.2",
"jest-extended": "^4.0.0",
"lint-staged": "^15.2.7",
"typescript": "^5.5.3"
},
"dependencies": {
"node-fetch": "^2.6.0",
"qs": "^6.7.0"
},
"standard": {
"env": [
"jest"
]
},
"keywords": [
"api",
"wrapper",
"coinmarketcap",
"bitcoin",
"cryptocurrency",
"ethereum"
],
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
},
"lint-staged": {
"*.ts": [
"prettier --write",
"eslint --ext .ts --fix"
]
}
}