forked from icastillejogomez/degiro-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.73 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
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "degiro-api",
"version": "1.0.4",
"public": true,
"description": "Unofficial DeGiro API for Javascript. Buy and sell in the stock market. See your portfolio and much more",
"main": "dist/main.js",
"types": "dist/main.d.ts",
"scripts": {
"start": "node dist/main",
"build": "rm -fr dist && tsc",
"lint": "tslint -c tslint.json --project tsconfig.json",
"lint-fix": "tslint -c tslint.json --project tsconfig.json --fix",
"test": "mocha -r ts-node/register tests/**/*.spec.ts",
"coverage": "nyc yarn test || exit 0; nyc report --reporter=text-lcov > coverage.lcov",
"npm:publish": "yarn lint && yarn build && yarn publish",
"push": "yarn lint && yarn build && git push",
"doc": "typedoc --out docs src",
"pre-commit": "yarn lint && yarn coverage && yarn build && yarn doc"
},
"keywords": [
"degiro",
"invesment",
"stock",
"api",
"degiro-api",
"stock-api",
"broker-api"
],
"author": "Ignacio F. Castillejo Gómez",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/icastillejogomez/degiro-api.git"
},
"devDependencies": {
"@types/async": "^3.2.3",
"@types/chai": "^4.2.11",
"@types/chai-as-promised": "^7.1.2",
"@types/cookie": "^0.4.0",
"@types/mocha": "^7.0.2",
"@types/node": "^13.13.5",
"@types/node-fetch": "^2.5.7",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"mocha": "^8.0.1",
"nyc": "^15.1.0",
"ts-node": "^8.10.2",
"tslint": "^6.1.2",
"tslint-config-airbnb": "^5.11.2",
"typedoc": "^0.17.7",
"typescript": "^3.8.3"
},
"dependencies": {
"async": "^3.2.0",
"es6-promise": "^4.2.8",
"isomorphic-fetch": "^2.2.1",
"node-fetch": "^2.6.0"
}
}