-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.08 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
{
"name": "coinbase-pro-automatic-investments",
"version": "0.0.1",
"description": "A script you can use to setup automatic investments in Coinbase Pro.",
"main": "index.ts",
"scripts": {
"test": "eslint --fix && jest",
"invest": "dotenv ts-node src/index.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/garrett-thompson/coinbase-pro-automatic-investments.git"
},
"keywords": [
"coinbase",
"crypto",
"invest",
"automatic",
"dollar-cost-averaging"
],
"author": "Garrett Thompson",
"license": "MIT",
"bugs": {
"url": "https://github.com/garrett-thompson/coinbase-pro-automatic-investments/issues"
},
"homepage": "https://github.com/garrett-thompson/coinbase-pro-automatic-investments#readme",
"dependencies": {
"axios": "0.24.0",
"dotenv-cli": "4.1.0",
"ts-node": "10.4.0"
},
"devDependencies": {
"@types/jest": "27.0.3",
"@typescript-eslint/parser": "5.4.0",
"eslint": "8.3.0",
"jest": "27.3.1",
"prettier": "2.4.1",
"ts-jest": "27.0.7",
"typescript": "4.5.2"
}
}