-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
84 lines (84 loc) · 2.1 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "@mirgj/alphavantage-wrapper",
"version": "0.7.3",
"description": "Wrapper around Alpha Vantage API with friendly interface",
"main": "lib/index.js",
"types": "types/index.d.ts",
"scripts": {
"lint": "eslint src/*",
"lint:fix": "eslint src/* --fix",
"build": "rm -rf lib && ./node_modules/.bin/babel src --out-dir lib --copy-files && del lib/**/*.spec.js lib/*.spec.js",
"prepare": "npm run build",
"test": "jest"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mirgj/alphavantage-wrapper.git"
},
"keywords": [
"alphavantage",
"alpha",
"vantage",
"API",
"wrapper",
"stocks",
"crypto",
"market",
"intraday",
"forex",
"sector",
"performance"
],
"author": "mirgj <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/mirgj/alphavantage-wrapper/issues"
},
"homepage": "https://github.com/mirgj/alphavantage-wrapper#readme",
"devDependencies": {
"@babel/cli": "^7.5.0",
"@babel/core": "^7.5.0",
"@babel/node": "^7.5.0",
"@babel/plugin-transform-runtime": "^7.5.0",
"@babel/preset-env": "^7.5.0",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^24.8.0",
"del-cli": "^2.0.0",
"eslint": "^6.0.1",
"eslint-config-airbnb": "^17.1.1",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-import": "^2.18.0",
"eslint-plugin-jest": "^22.7.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-react": "^7.14.2",
"husky": "^3.0.0",
"jest": "^24.8.0",
"lint-staged": "^9.1.0",
"prettier": "^1.18.2",
"regenerator-runtime": "^0.13.2"
},
"lint-staged": {
"*.{js,jsx}": [
"eslint --fix",
"git add"
],
"*.{json,md,scss,yaml,yml}": [
"prettier --write",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"dependencies": {
"@babel/runtime": "^7.5.4",
"request": "^2.88.0",
"request-promise-native": "^1.0.7"
}
}