-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.24 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
{
"name": "@samuraitruong/coinspot-api",
"version": "1.0.3",
"description": "",
"main": "lib/index.js",
"scripts": {
"lint": "eslint . --fix",
"build": "rm -rf ./lib && tsc && npm run doc-gen",
"dev": "ts-node ./src/index",
"test": "jest",
"doc-gen": "typedoc --out lib/docs src/",
"prepublish": "npm run build",
"publish-doc": "npm run doc-gen && gh-pages -d lib/docs"
},
"repository": {
"type": "http",
"url": "https://github.com/samuraitruong/coinspot-api.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/samuraitruong/coinspot-api/issues"
},
"homepage": "https://github.com/samuraitruong/coinspot-api",
"devDependencies": {
"@types/jest": "^26.0.19",
"@types/node": "^14.14.14",
"@types/qs": "^6.9.5",
"@typescript-eslint/eslint-plugin": "^4.10.0",
"@typescript-eslint/parser": "^4.10.0",
"dotenv": "^8.2.0",
"eslint": "^7.17.0",
"eslint-config-prettier": "^7.1.0",
"eslint-plugin-prettier": "^3.3.1",
"gh-pages": "^3.1.0",
"jest": "^26.6.3",
"prettier": "^2.2.1",
"ts-jest": "^26.4.4",
"typedoc": "^0.20.24",
"typescript": "^4.1.3"
},
"dependencies": {
"axios": "^0.21.0",
"qs": "^6.9.4"
}
}