-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.29 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": "crypto-bot-js",
"version": "0.0.1",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"files": [
"lib/**/*"
],
"license": "MIT",
"author": "Sylvanus Kateile",
"description": "Promise based Crypto Bot client for the browser and node.js",
"scripts": {
"dev-js": "set DEBUG=crypto-bot && npm run build && node examples/app.js",
"dev-ts": "set DEBUG=crypto-bot && npm run build && ts-node examples/app.ts",
"build": "rimraf lib && tsc",
"test": "jest --runInBand",
"prettier:fix": "prettier --write \"**/**.{ts,js}\"",
"prepare": "npm run build && husky install",
"preversion": "npm run lint",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags",
"pub": "npm publish --access=public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kateile/crypto-bot-js"
},
"dependencies": {
"axios": "^0.24.0",
"debug": "^4.3.3",
"tslib": "^2.3.1"
},
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/debug": "^4.1.7",
"@types/jest": "^27.0.3",
"husky": "^7.0.0",
"jest": "^27.3.1",
"prettier": "^2.5.0",
"pretty-quick": "^3.1.2",
"rimraf": "^3.0.2",
"ts-jest": "^27.0.7",
"ts-node": "^10.4.0",
"typescript": "^4.5.2"
}
}