-
Notifications
You must be signed in to change notification settings - Fork 37
/
package.json
65 lines (65 loc) · 1.43 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
{
"name": "coinmarketcap-api",
"version": "3.1.1",
"description": "CoinMarketCap API wrapper for node",
"license": "MIT",
"repository": {
"url": "https://github.com/tiaanduplessis/coinmarketcap-api",
"type": "git"
},
"homepage": "https://github.com/tiaanduplessis/coinmarketcap-api",
"bugs": "https://github.com/tiaanduplessis/coinmarketcap-api",
"main": "index.js",
"files": [
"index.js"
],
"scripts": {
"test": "jest",
"test:cov": "npm run test -- --coverage",
"lint": "standard --fix ./*.js",
"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": "Tiaan du Plessis",
"contributors": [
"Abhinav Kasamsetty"
],
"devDependencies": {
"documentation": "12.0.2",
"dotenv": "7.0.0",
"husky": "3.0.0",
"jest": "24.8.0",
"jest-chain": "1.1.2",
"jest-extended": "^0.11.2",
"standard": "14.1.0"
},
"dependencies": {
"node-fetch": "^2.6.0",
"qs": "^6.7.0"
},
"standard": {
"env": [
"jest"
]
},
"keywords": [
"api",
"wrapper",
"coinmarketcap",
"bitcoin",
"cryptocurrency"
],
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
}
}