-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.17 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
{
"name": "@kfreskgard/avanza",
"version": "0.3.3",
"description": "Package to interact with the web API of Avanza",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"/dist"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc",
"publish-lib": "npm run build && npm publish",
"publish-beta": "npm run build && npm publish --tag beta",
"publish-dryrun": "npm run build && npm publish --dry-run"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kfreskgard/avanza.git"
},
"keywords": [
"avanza"
],
"author": "Kim Freskgård <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/kfreskgard/avanza/issues"
},
"homepage": "https://github.com/kfreskgard/avanza",
"dependencies": {
"axios": "^1.6.7",
"axios-cookiejar-support": "^5.0.0",
"eventsource": "^2.0.2",
"totp-generator": "^0.0.14",
"tough-cookie": "^4.1.3",
"typescript": "^5.3.3"
},
"devDependencies": {
"@types/eventsource": "^1.1.15",
"@types/node": "^20.11.29",
"@types/totp-generator": "^0.0.8",
"@types/tough-cookie": "^4.0.5"
}
}