-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.19 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
{
"name": "degiro-cli",
"version": "0.1.2",
"description": "Unofficial DeGiro CLI",
"main": "./bin/main.js",
"bin": {
"degiro": "./bin/main.js"
},
"preferGlobal": true,
"scripts": {
"start": "node bin/main.js",
"build": "rm -fr bin && tsc",
"make-executable": "chmod +x bin/main.js",
"lint": "tslint --project tsconfig.json 'src/**/*.ts'",
"pre-commit": "yarn lint && yarn build && yarn make-executable"
},
"repository": {
"type": "git",
"url": "git+https://github.com/icastillejogomez/degiro-cli.git"
},
"keywords": [
"degiro",
"degiro-api",
"degiro-cli"
],
"author": "Ignacio F. Castillejo Gómez",
"license": "MIT",
"bugs": {
"url": "https://github.com/icastillejogomez/degiro-cli/issues"
},
"homepage": "https://github.com/icastillejogomez/degiro-cli#readme",
"devDependencies": {
"@types/clear": "^0.1.0",
"@types/figlet": "^1.2.0",
"@types/node": "^14.0.1",
"ts-node": "^8.10.1",
"tslint": "^6.1.2",
"tslint-config-airbnb": "^5.11.2",
"typescript": "^3.9.2"
},
"dependencies": {
"cli-table": "^0.3.1",
"commander": "^5.1.0",
"degiro-api": "^0.2.3",
"hidefile": "^3.0.0"
}
}