-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
69 lines (69 loc) · 1.55 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
60
61
62
63
64
65
66
67
68
69
{
"name": "twelvedata",
"version": "3.0.1",
"description": "A simple wrapper around the twelve data API",
"main": "dist/twelvedata.js",
"module": "dist-esm/twelvedata.js",
"browser": "dist/twelvedata.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "rollup -c && npx tsc",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/evzaboun/twelvedata.git"
},
"keywords": [
"stocks",
"stockmarket",
"api",
"twelve",
"data",
"twelvedata",
"twelve-data",
"cryptocurrency",
"crypto",
"trading",
"quant",
"finance"
],
"author": "Zampounis Evangelos, Zampounis Filippos",
"license": "MIT",
"bugs": {
"url": "https://github.com/evzaboun/twelvedata/issues"
},
"homepage": "https://github.com/evzaboun/twelvedata#readme",
"dependencies": {
"cross-fetch": "^3.1.5"
},
"devDependencies": {
"@babel/preset-env": "^7.16.11",
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.1.3",
"babel-jest": "^26.1.0",
"dotenv": "^16.0.0",
"fs": "0.0.1-security",
"jest": "^27.5.0",
"rollup": "^2.67.0",
"rollup-plugin-node-polyfills": "^0.2.1",
"rollup-plugin-sourcemaps": "^0.6.3",
"typescript": "^4.5.5"
},
"jest": {
"collectCoverage": true,
"bail": false,
"verbose": true,
"testMatch": [
"**/test/**.js"
],
"testEnvironment": "node",
"type": "module"
},
"files": [
"LICENSE.txt",
"README.md",
"dist/*"
]
}