-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
59 lines (59 loc) · 1.51 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": "yahoo-stocks",
"version": "2.0.5",
"description": "Fetch stock data from Yahoo! Finance",
"main": "dist/index.js",
"module": "dist/index.m.js",
"source": "index.js",
"devDependencies": {
"babel-core": "^6.26.3",
"babel-jest": "^24.1.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.7.0",
"coveralls": "^3.0.2",
"husky": "^1.3.1",
"jest": "^24.1.0",
"lint-staged": "^8.1.3",
"microbundle": "^0.9.0",
"prettier": "^1.16.4"
},
"scripts": {
"build": "microbundle",
"dev": "microbundle watch",
"fmt": "prettier --write {index.js,README.md}",
"precommit": "lint-staged",
"test": "jest --coverage",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vutran/yahoo-stocks.git"
},
"keywords": [
"yahoo",
"finance",
"stocks",
"trade",
"scraper"
],
"author": "Vu Tran <vu@vu-tran.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/vutran/yahoo-stocks/issues"
},
"homepage": "https://github.com/vutran/yahoo-stocks#readme",
"lint-staged": {
"{index.js,README.md}": [
"prettier --write",
"git add"
]
},
"files": [
"dist",
"LICENSE",
"README.md"
],
"jest": {
"testURL": "http://localhost/"
}
}