forked from Stonks2Moon/BoersenAPI
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 930 Bytes
/
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
{
"name": "moonstonks-boersenapi",
"version": "1.1.0",
"author": "Timo Scheuermann",
"description": "Offizielle API der MoonStonks Börse, um jegliche Art von Order zu stellen.",
"main": "./dist/main.js",
"scripts": {
"build": "rimraf dist && tsc",
"lint": "eslint \"**\\*.ts\"",
"start": "tsc && node ./dist/main.js",
"prepublishOnly": "npm run build"
},
"files": [
"dist",
"LICENSE",
"README.md"
],
"repository": {
"type": "git",
"url": "https://github.com/Stonks2Moon/BoersenAPI"
},
"bugs": {
"url": "https://github.com/Stonks2Moon/BoersenAPI/issues"
},
"homepage": "https://github.com/Stonks2Moon/BoersenAPI",
"keywords": [
"moonstonks",
"api",
"boerse"
],
"license": "ISC",
"devDependencies": {
"@types/node": "^14.14.31",
"eslint": "^7.20.0",
"typescript": "^4.1.5"
},
"dependencies": {
"node-fetch": "^2.6.1"
}
}