{"_id":"star","_rev":"35-75f72402906c2144cec7f8a995289d45","name":"star","time":{"modified":"2023-11-25T19:53:47.541Z","created":"2012-11-15T09:48:24.488Z","1.0.0":"2012-11-15T09:48:29.103Z","1.0.1":"2012-11-16T03:09:07.851Z","1.0.2":"2012-11-16T03:14:19.208Z","0.2.0":"2015-07-13T03:30:23.889Z","0.2.1":"2015-07-13T05:54:22.538Z","0.2.2":"2015-07-13T06:02:39.331Z","0.2.3":"2015-07-14T09:40:31.152Z","0.2.4":"2015-07-16T03:46:52.121Z","0.2.5":"2015-07-20T01:06:10.817Z","0.2.6":"2015-07-21T07:11:50.818Z","0.2.7":"2015-07-28T02:27:06.084Z","0.2.8":"2015-07-30T03:04:45.206Z","0.3.0":"2015-08-11T05:32:35.839Z","0.3.1":"2015-08-22T03:16:37.352Z","0.3.2":"2015-09-28T08:30:00.126Z","0.3.3":"2016-01-06T07:56:23.083Z","0.3.5":"2016-01-18T07:27:53.680Z","0.3.6":"2016-04-26T09:41:42.172Z","0.3.7":"2016-04-29T02:29:01.218Z","0.3.8":"2016-05-27T03:03:28.584Z","0.3.9":"2016-06-01T23:58:38.767Z","0.5.0":"2018-02-20T11:11:31.170Z"},"maintainers":[{"name":"hustcer","email":"hustcer@gmail.com"}],"dist-tags":{"latest":"0.5.0"},"description":"A STock Analysis and Research tool for terminal users.","readme":"\n## `Star`是什么?\n\n`Star`是 STock Analysis and Research tool 的简称，主要用于A股股票追踪分析。`star`目前的主要作用是根据您所设定的股票目标价及当前价计算出相对该**目标价**的上涨空间，即`(目标价-当前价)/当前价x100%`，然后将此上涨空间按顺序排列方便您从中找到上涨空间最大的股票作为买入参考。`star`不提供股价预测和股票交易服务，目前只是单纯的计算，所以它的价值很大程度上取决于您所设定的目标价的有效性，目标价可以选择近期股票的最高价格或者分析师给出的价格，在大牛市里面这样的目标价还是比较容易达到的。同时`star`还具有股票基本报价信息查询、看盘、股票董监高持股信息批量查询、查阅未来30日财经日历等功能，未来可能会加入更多功能，也欢迎大家[反馈建议](https://github.com/hustcer/star/issues/new)。\n\n\n## Donate\n\n这个工具的开发和维护花费了我大量的时间和精力，如果`Star`对你有所帮助，也欢迎您给予支持，谢谢：\n![赞助Star](https://uzfin.com/static/images/backing.jpg \"赞助Star\")\n\n\n## 安装及使用\n\n`Star`是基于`node.js`的所以先要安装`node.js`, 推荐您使用最新版本的`node.js`，同时最好使用 Mac/Linux系统，Windows下目前还没测试过，理论上可以使用，如果具体使用过程中遇到问题也可以[在此反馈](https://github.com/hustcer/star/issues/new)；具体安装步骤如下：\n\n1. 安装 [node.js](https://nodejs.org/), version >= 4.2.0，始终建议您采用最新版本的 `node.js`;\n1. 安装`star`: `sudo npm i -g star`，注意一定记得加上 `-g` 参数，这样在任意路径下都可以调用`star`命令，否则可能找不到可执行文件;\n1. 运行`star`: 直接执行 `star` 即可，第一次运行的时候需要加`-f`或`--file`参数指定股票数据文件(推荐采用绝对路径,详见后文说明)，之后可以省略该参数;\n1. 更多帮助可以参考: `star --help`;\n\n注意：如果`npm`安装很慢(由于一些众所周知的原因)，可以使用[`cnpm`](https://npm.taobao.org/)代替，下同；\n\n### 从源码安装\n\n如需从源码安装用如下步骤替换前面的**第二步**即可：\n\n1. 在安装 `git` 之后 clone `star`源码：`git clone git@github.com:hustcer/star.git`;\n1. 在`star`目录下安装依赖的 `node` 模块: `cd star && sudo npm install`或者`sudo npm install --production`，加上`--production`参数则不安装开发依赖的相关模块比如`gulp`等;\n1. 然后执行 `./star.js` 即可，推荐创建软链接：`ln -s /absolute/path/to/star.js /usr/local/bin/star`, 这样就可以在任意位置通过`star`命令进行调用；\n\n## 升级\n\n本工具会不定时更新，升级方法如下：\n\n1. 【可选】升级node.js, 建议您使用[`nvm`](https://github.com/creationix/nvm)来管理node这样升级起来很方便，mac下也可以使用[`brew`](http://brew.sh/)来安装、升级node；\n2. 更新 `star`：`sudo npm update -g star`;\n\n## FAQ\n\n搜集了一些常见问题及解决办法，参考[这里](FAQ.md)\n\n## What' New ?\n\n变更详情 [**见此**](history.md)，主要变更如下：\n\n- 【v0.5.0】 修复财经日历获取异常；修复深交所股票董监高增减持记录查询异常.\n- 【v0.3.9】 修复财经日历内容解码问题.\n- 【v0.3.8】 修复 node.js V6+ 环境下帮助文档输出被截断的 bug.\n- 【v0.3.5】 优化命令行中数据表格展示；\n- 【v0.3.2】 股票追踪增加对融资融券标的的过滤支持，可以通过`-M`或者`--margin`实现；\n- 【v0.3.1】 修复深市股票董监高持股变动查询时的分页显示问题；\n- 【v0.3.1】 `-g`或`--grep`参数支持对股票代码的过滤；\n- 【v0.3.0】 通过`-i`或`--insider`参数查询董监高持股变化信息的时候也可以不指定股票代码，此时查询沪深两市最近的董监高交易记录，按交易时间倒序排列；\n- 【v0.3.0】 未指定股票代码查询董监高持股变动信息时允许通过`--market`参数来指定板块儿：SZM-深圳主板, SZGEM-深圳创业板, SZSME-深圳中小板, SHM-上海主板. 大小写不敏感; 指定股票代码时会根据股票代码来判断属于哪个市场，所以`--market`参数无效。\n- 【v0.3.0】 可以通过`-i --top-buy`参数查询最近买入总额排名前列的股票，`--span`参数代表查询时间区间：1m~12m，即最近一个月到最近12个月；数据源: [uzfin.com](http://uzfin.com)\n- 【v0.3.0】 可以通过`-i --top-sell`参数查询最近卖出总额排名前列的股票，`--span`参数代表查询时间区间：1m~12m，即最近一个月到最近12个月；数据源: [uzfin.com](http://uzfin.com)\n- 【v0.3.0】 修复查询深市个股董监高持股变动信息时的分页问题，可以通过`-p`或者`--page`参数指定要查询的分页，默认为第一页。\n- 【v0.2.8】 增加`--remove`参数筛选证券名称和备注里面**不包含**指定关键词的股票，多个关键词之间用','或'，'隔开.\n- 【v0.2.8】 股票追踪增加按`bdiff`即根据`(s.price - s.cheap)/s.price`指标排序.\n- 【v0.2.8】 股票追踪增加按`sdiff`即根据`(s.price - s.expensive)/s.price`指标排序.\n- 【v0.2.7】 增加`--lteb [pct]` 参数用于筛选出使得如下条件成立的股票：`100*(s.price - s.cheap)/s.price <= pct`，如果`pct`为空则上述条件退化为：`s.price <= s.cheap`.\n- 【v0.2.7】 增加`--gtes [pct]` 参数用于筛选出使得如下条件成立的股票：`100*(s.price - s.expensive)/s.price >= pct`，如果`pct`为空则上述条件退化为：`s.price >= s.expensive`.\n- 【v0.2.6】 新增`--lteb` 和 `--gtes`参数，用于筛选当前价小于等于适合买入的便宜价格或者大于等于应该卖出的昂贵价格的股票(分别对应股票配置里面的`cheap`和`expensive`价格)。\n- 【v0.2.6】 允许通过 `star -wo` 或者 `star -w -o` watch 当前持有的股票, 原有的 fallback 机制不变。\n- 【v0.2.5】 改进内部交易查询等在命令行终端输出时的对齐问题。\n- 【v0.2.5】 看盘股票列表的数目从 **20** 调整到 **25**，批量请求的数目也作相应地调整。\n- 【v0.2.4】 财经日历的事件列表输出排版改进——去掉冗余的空白字符。\n- 【v0.2.4】 股票配置文件的`symbols`部分添加重复股票检查功能。\n\n\n## 具体功能列表\n\n### 股票追踪\n\n- 设置股票的买入价、卖出价、目标价、星级、备注等，可以自动获取股票的当前价格并且计算距离目标价的上涨空间：`(目标价-当前价)/当前价x100%`，上涨空间最大的股票通常也是最有利可图的，这也是本工具的最主要功能，方便快速决定值得买入的股票；\n- 支持两个股票信息获取数据源：腾讯和新浪股票数据源，万一其中一个有问题可以通过`-d`或`--data`参数切换到另一个；\n- 可以按照股票的code(证券代码)、star(星级)、price(当前价)、incp(当前涨幅)、bdiff( `(s.price - s.cheap)/s.price` )、sdiff( `(s.price - s.expensive)/s.price` )、targetp(上涨空间: `(s.target - s.price)/s.price` )、capacity(市值)、pe(PE)、pb(PB)等条件进行升、降序排序，其中后三项排序只有在采用腾讯数据接口的时候才支持；\n- 股票数据比较多的时候可以设置每次显示多少条数据(通过`-l`或`--limit`参数)，并且进行分页(通过`-p`或`--page`参数)；\n- 可以设置是否关注、持有某股票，并根据这些条件进行过滤：可以显示所有股票(-a, --all)、只显示持有的股票(-o, --hold)、只显示不再关注的股票(-I, --ignore)；\n- 可以通过`-e`或`--exclude`参数排除所有证券代码以300,600,002或者000开头的股票，多个前缀之间以','或者'，'分隔；\n- 可以通过`-c`或`--contain`参数只显示所有证券代码以300,600,002或者000开头的股票，多个前缀之间以','或者'，'分隔；\n- 可以通过`-f`或`--file`参数指定股票文件路径，并自动保存该路径，下次执行命令的时候不必重复输入；\n- 可以通过`-g`或`--grep`参数对股票列表里的股票名、股票代码、备注字段进行搜索、过滤，多个关键词之间以','或者'，'分隔；\n- 可以通过`--remove`参数筛选证券名称和备注里面**不包含**指定关键词的股票，多个关键词之间用','或'，'分隔.\n- 可以通过`-L`或`--lte`参数过滤出当前价到目标价的上涨空间百分比小于等于指定百分比的股票；\n- 可以通过`-G`或`--gte`参数过滤出当前价到目标价的上涨空间百分比大于等于指定百分比的股票；\n- 可以通过`-U`或`--under`参数过滤出股票星级等于或在指定星级之下的股票；\n- 可以通过`-A`或`--above`参数过滤出股票星级等于或在指定星级之上的股票；\n- 可以通过`-M`或`--margin`参数过滤出支持融资融券的股票；\n- 可以通过`--lteb [pct]`参数用于筛选出使得如下条件成立的股票：`100*(s.price - s.cheap)/s.price <= pct`，如果`pct`为空则上述条件退化为：`s.price <= s.cheap`，其中`s.price`为股票当前价格，之所以使用`s.price`作为分母而不是`s.cheap`主要是为了减少因为后者的随意性而带来的偏差；\n- 可以通过`--gtes [pct]`参数用于筛选出使得如下条件成立的股票：`100*(s.price - s.expensive)/s.price >= pct`，如果`pct`为空则上述条件退化为：`s.price >= s.expensive`，其中`s.price`为股票当前价格，之所以使用`s.price`作为分母而不是`s.expensive`主要是为了减少因为后者的随意性而带来的偏差；\n\n\n### 股票报价查询\n\n- 通过证券代码查询相应股票的基本报价信息，多个代码之间以','或者'，'分隔，一次最多查询25个，例如：`star 300315,600048，600015`；\n\n### 股票报价自动更新/看盘\n\n- 可以通过`-w`或`--watch`参数看盘，在该模式下股票报价数据会自动更新，目前更新时间间隔为3.6秒，例如：`star -w 601179,600118,600893,000712,002625`，最终执行效果类似于在终端执行`top`命令；\n- 每次输入这些股票代码可能比较麻烦，所以为了方便起见可以修改股票配置文件的 `watchList` 部分内容，详见后文说明，这样每次只需要执行`star -w` 命令即可；\n- 如果 `watchList` 部分内容为空则自动会查找 `symbols` 部分股票里面 `hold` 为 `true` 的部分股票；\n- 如果在使用`-w`或`--watch`参数的同时再加上`-o`或`--hold`参数则忽略`watchList`里面的股票直接加载`symbols` 部分股票里面 `hold` 为 `true` 的部分股票，比如`star -w -o`或者`star -wo`；\n- 需要说明的是，目前看盘时股票数目有限制，最多同时观察25只股票，这个数目在大多数情况下已经足够了，加上这个限制主要是为了减少数据请求的次数；\n\n### 董监高持股变动信息批量查询\n\n- 可以通过`-i`或`--insider`参数加上对应的证券代码，查询相应股票的高管交易记录，多个代码之间以','或者'，'分隔，支持对深市主板、中小板、创业板及沪市股票的董监高持股变动信息进行查询；\n- 通过`-i`或`--insider`参数查询董监高持股变化信息的时候也可以不指定股票代码，此时查询沪深两市最近董监高交易记录，按交易时间倒序排列，可以通过`-p`或`--page`参数进行翻页；\n- 可以通过`--from 2014/01/01 --to 2015/07/09`参数限定高管交易记录的查询起始时间，默认从当前时间开始往前推一年；\n- 可以通过`--span 6m`参数限定高管交易记录的查询时间跨度月数，取值范围从`1m`到`24m`，`6m`表示从现在开始往前推6个月，默认为`12m`，例如：`star -i 000768,002456,600118,300036 --span 3m`；\n- 需要注意的是目前一次最多可以查询25只股票，如果你有更多股票可以分多次进行查询，加上这个限制同样是为了减少数据请求次数和服务器压力；\n- 未指定股票代码查询董监高持股变动信息时允许通过`--market`参数来指定板块：SZM-深圳主板, SZGEM-深圳创业板, SZSME-深圳中小板, SHM-上海主板. 大小写不敏感。**注意：当指定股票代码的时候会自动忽略该参数**；\n- 可以通过`-i --top-buy`参数查询最近买入总额排名前列的股票，`--span`参数代表查询时间区间：1m~12m，即最近一个月到最近12个月；\n- 可以通过`-i --top-sell`参数查询最近卖出总额排名前列的股票，`--span`参数代表查询时间区间：1m~12m，即最近一个月到最近12个月；\n\n### 未来30日财经日历\n\n- 可以通过`-C`或`--cal`参数查询中国股市未来30日题材前瞻；\n\n### 其它\n\n- 还有更多功能正在酝酿之中，同时也欢迎大家广泛提建议；\n\n## 股票数据文件说明\n\n`Star`的运行需要一个股票数据文件，如果未指定股票数据文件默认情况下会使用当前目录下的 [`symbols.yaml`](https://github.com/hustcer/star/blob/master/symbols.yaml) 文件，该文件采用`yaml`语法编写，修改的时候尤其要注意缩进问题，否则可能会解析错误。一个典型的股票数据文件格式说明如下：\n\n### 股票追踪数据说明\n\n```yaml\nsymbols:\n  -\n    name      : '掌趣科技'            # <字符串>公司名称\n    code      : '300315'             # <字符串>证券代码，必填，不可错\n    cheap     : 16                   # <数字>买点价位，在此价格附近买入有利可图\n    expensive : 22                   # <数字>卖点价位，在此价格附近可以卖出获利了结\n    target    : 23                   # <数字>目标价位\n    star      : 3                    # <数字>股票评级，越高越值得购买，范围：1~5\n    hold      : false                # <true/false> true 表示当前持有该股票,反之不持有\n    watch     : true                 # <true/false>是否关注此股票，如果 true 则关注，否则忽略\n    comment   : '手游;高送转;自设目标'  # <字符串>行业/概念/题材等备注,后期可用于搜索过滤\n  -\n    name      : '启明星辰'\n    code      : '002439'\n    cheap     : 50\n    expensive : 88\n    target    : 78\n    star      : 3\n    hold      : false\n    watch     : true\n    comment   : '计算机;信息安全;腾讯合作;分析师推荐'\n```\n\n### 股票报价自动更新/看盘数据格式说明\n\n```yaml\n# 通过`star.js -w`或`star.js --watch`看盘时如果没有传入证券代码参数则从这里取得看盘股票列表\n# 如果 watchList 列表为空或者不存在则从 symbols 列表中获取 hold 为 true 的股票\nwatchList:\n  -\n    name :  '安信信托'\n    code :  '600816'\n  -\n    name :  '中航飞机'\n    code :  '000768'\n  -\n    name :  '华胜天成'\n    code :  '600410'\n  -\n    name :  '中国卫星'\n    code :  '600118'\n  -\n    name :  '中航动力'\n    code :  '600893'\n  -\n    name :  '锦龙股份'\n    code :  '000712'\n```\n\n## 运行截图\n\n1. 帮助文档\n![](https://github.com/hustcer/star/blob/master/snapshot/help.png)\n\n2. 股票筛选结果\n![](https://github.com/hustcer/star/blob/master/snapshot/snapshot.png)\n\n3. 股票基本报价信息查询\n![](https://github.com/hustcer/star/blob/master/snapshot/query.png)\n\n4. 股票看盘(报价数据自动更新)\n![](https://github.com/hustcer/star/blob/master/snapshot/watch.png)\n\n5. 批量查询股票董监高增减持信息\n![](https://github.com/hustcer/star/blob/master/snapshot/insider.png)\n\n6. 董监高增减持排行榜\n![](https://github.com/hustcer/star/blob/master/snapshot/topBuy.png)\n\n7. 中国股市未来30日题材前瞻\n![](https://github.com/hustcer/star/blob/master/snapshot/cal.png)\n","versions":{"0.2.1":{"name":"star","author":{"name":"hustcer"},"public":true,"version":"0.2.1","license":"MIT","homepage":"http://traceinvest.com","description":"A STock Analysis and Research tool for terminal users.","main":"star","bin":{"star":"./star.js"},"contributors":[{"name":"Justin Ma","email":"hustcer(at)gmail.com","url":"at"}],"scripts":{"start":"star.js -h"},"engines":{"node":">= 0.12.7"},"repository":{"type":"git","url":"git+https://github.com/hustcer/star.git"},"bugs":{"url":"https://github.com/hustcer/star/issues"},"keywords":["nodejs","stocks","insider trading"],"dependencies":{"async":"~1.3.0","bluebird":"~2.9.33","blessed":"~0.1.7","blessed-contrib":"~2.2.0","cheerio":"~0.19.0","colors":"~1.1.0","commander":"~2.8.1","iconv":"^2.1.8","js-yaml":"~3.3.0","lodash":"~3.10.0","moment":"~2.10.3","numeral":"~1.5.3","printf":"~0.2.3","request":"2.58.0"},"devDependencies":{"grunt":"^0.4.5","grunt-eslint":"^16.0.0"},"gitHead":"cf13fa6bb5c1d6dfdca2a97e9863340cf7584884","_id":"star@0.2.1","_shasum":"7ee4b8f7640e97d6c4f4c71e82232f28ad292ad9","_from":".","_npmVersion":"2.12.0","_nodeVersion":"0.12.6","_npmUser":{"name":"hustcer","email":"hustcer@gmail.com"},"dist":{"shasum":"7ee4b8f7640e97d6c4f4c71e82232f28ad292ad9","tarball":"https://registry.npmjs.org/star/-/star-0.2.1.tgz","integrity":"sha512-aeb6OwWpMeqV760M6GPCSGdoXuUR8rB5yoKCmGDFV23083Rr4Nb9f777qs9KqO/kG7+FyZzQgiC0wrkkLqMEEA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIATUfBB3Nuq+IjcWJNjhlJCjb+zQBwr6bIb1L4h9FUDzAiEAkGC/ayDyXyWlEe6JUpGd8D9YDrfGtRgF9xUvgXCcI9Q="}]},"maintainers":[{"name":"hustcer","email":"hustcer@gmail.com"}],"directories":{}},"0.2.2":{"name":"star","author":{"name":"hustcer"},"public":true,"version":"0.2.2","license":"MIT","homepage":"http://traceinvest.com","description":"A STock Analysis and Research tool for terminal users.","main":"star","bin":{"star":"./star.js"},"contributors":[{"name":"Justin Ma","email":"hustcer(at)gmail.com","url":"at"}],"scripts":{"start":"star.js -h"},"engines":{"node":">= 0.12.5"},"repository":{"type":"git","url":"git+https://github.com/hustcer/star.git"},"bugs":{"url":"https://github.com/hustcer/star/issues"},"keywords":["nodejs","stocks","insider trading"],"dependencies":{"async":"~1.3.0","bluebird":"~2.9.33","blessed":"~0.1.7","blessed-contrib":"~2.2.0","cheerio":"~0.19.0","colors":"~1.1.0","commander":"~2.8.1","iconv":"^2.1.8","js-yaml":"~3.3.0","lodash":"~3.10.0","moment":"~2.10.3","numeral":"~1.5.3","printf":"~0.2.3","request":"2.58.0"},"devDependencies":{"grunt":"^0.4.5","grunt-eslint":"^16.0.0"},"gitHead":"cf13fa6bb5c1d6dfdca2a97e9863340cf7584884","_id":"star@0.2.2","_shasum":"56a096c42435956bf9b3a6ec38f50a44802aadbc","_from":".","_npmVersion":"2.12.0","_nodeVersion":"0.12.6","_npmUser":{"name":"hustcer","email":"hustcer@gmail.com"},"dist":{"shasum":"56a096c42435956bf9b3a6ec38f50a44802aadbc","tarball":"https://registry.npmjs.org/star/-/star-0.2.2.tgz","integrity":"sha512-rTSGvntzEL5NKckoRIm6pqYvV3xFmzApfXghNj5kHqf1lpdBkcvTFRaAMNoz2FaCzjJzzRtbzfsfxnTnY3l8UQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIAihAZ6SrXBS2BIU8XRkJEYNXAnZOiOWd9YQxguLyTMUAiBGOzCe6b+F6qerQq8MtYvM4hlLwufrQKvtye49bEzt5A=="}]},"maintainers":[{"name":"hustcer","email":"hustcer@gmail.com"}],"directories":{}},"0.2.3":{"name":"star","author":{"name":"hustcer"},"public":true,"version":"0.2.3","license":"MIT","homepage":"http://traceinvest.com","description":"A STock Analysis and Research tool for terminal users.","main":"star","bin":{"star":"./star.js"},"contributors":[{"name":"Justin Ma","email":"hustcer(at)gmail.com","url":"at"}],"scripts":{"start":"star.js -h"},"engines":{"node":">= 0.12.5"},"repository":{"type":"git","url":"git+https://github.com/hustcer/star.git"},"bugs":{"url":"https://github.com/hustcer/star/issues"},"keywords":["nodejs","stocks","insider trading"],"dependencies":{"async":"~1.3.0","bluebird":"~2.9.33","blessed":"~0.1.7","blessed-contrib":"~2.2.0","cheerio":"~0.19.0","colors":"~1.1.0","commander":"~2.8.1","iconv":"^2.1.8","js-yaml":"~3.3.0","lodash":"~3.10.0","moment":"~2.10.3","numeral":"~1.5.3","printf":"~0.2.3","request":"2.58.0"},"devDependencies":{"grunt":"^0.4.5","grunt-eslint":"^16.0.0"},"gitHead":"004a7c619eaf6ee578ff9e52a0c929a0a5aa0fa2","_id":"star@0.2.3","_shasum":"cea4511826fd736bc2e92e555b7e00a148c1e281","_from":".","_npmVersion":"2.12.0","_nodeVersion":"0.12.7","_npmUser":{"name":"hustcer","email":"hustcer@gmail.com"},"maintainers":[{"name":"hustcer","email":"hustcer@gmail.com"}],"dist":{"shasum":"cea4511826fd736bc2e92e555b7e00a148c1e281","tarball":"https://registry.npmjs.org/star/-/star-0.2.3.tgz","integrity":"sha512-I+i/ATt1Hj40iXlhOAn4efvp7dYJBS0SH+5DyC8A/qVMd4pGhqpgtIbym0B6sj1qr7TjYgHuGgFNHv7SRntang==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDVZtgNEuUpufalpY8lxR2bP+Wg2y2WWJORXyJWE4U+hwIgURctRdsx5KkyCEtaJfFmWHJAgLFa5ud08fFOkn5Ee9E="}]},"directories":{}},"0.2.4":{"name":"star","author":{"name":"hustcer"},"public":true,"version":"0.2.4","license":"MIT","homepage":"http://traceinvest.com","description":"A STock Analysis and Research tool for terminal users.","main":"star","bin":{"star":"./star.js"},"contributors":[{"name":"Justin Ma","email":"hustcer(at)gmail.com","url":"at"}],"scripts":{"start":"star.js -h"},"engines":{"node":">= 0.12.5"},"repository":{"type":"git","url":"git+https://github.com/hustcer/star.git"},"bugs":{"url":"https://github.com/hustcer/star/issues"},"keywords":["nodejs","stocks","insider trading"],"dependencies":{"async":"~1.3.0","bluebird":"~2.9.34","blessed":"~0.1.7","blessed-contrib":"~2.2.1","cheerio":"~0.19.0","colors":"~1.1.0","commander":"~2.8.1","iconv":"^2.1.8","js-yaml":"~3.3.0","lodash":"~3.10.0","moment":"~2.10.3","numeral":"~1.5.3","printf":"~0.2.3","request":"2.58.0"},"devDependencies":{"grunt":"^0.4.5","grunt-eslint":"^16.0.0"},"gitHead":"1ac1e7eebcc317de789b0f67e966748d29b8b731","_id":"star@0.2.4","_shasum":"72f2f190170d223d7cbb33ada85a716851e3f65f","_from":".","_npmVersion":"2.13.0","_nodeVersion":"0.12.7","_npmUser":{"name":"hustcer","email":"hustcer@gmail.com"},"dist":{"shasum":"72f2f190170d223d7cbb33ada85a716851e3f65f","tarball":"https://registry.npmjs.org/star/-/star-0.2.4.tgz","integrity":"sha512-w5UZ6ILDwTPxUjcFtObW8VnwC3WGbA3TcJy8HuCRjVfQVnVf7EBxxJDs7rkxld9X9mFhnz9ghU8cdwUQV+8YeQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDYV4gMK2Tc1gCvbjccwGUGa+1QbxLm1WFSkR22ILoNWAIhAJ3IVdLkLs6ff0aOfHSJS4P3wDUTCWQz/tSI0VATfpKC"}]},"maintainers":[{"name":"hustcer","email":"hustcer@gmail.com"}],"directories":{}},"0.2.5":{"name":"star","author":{"name":"hustcer"},"public":true,"version":"0.2.5","license":"MIT","homepage":"http://traceinvest.com","description":"A STock Analysis and Research tool for terminal users.","main":"star","bin":{"star":"./star.js"},"contributors":[{"name":"Justin Ma","email":"hustcer(at)gmail.com","url":"at"}],"scripts":{"start":"star.js -h"},"engines":{"node":">= 0.12.5"},"repository":{"type":"git","url":"git+https://github.com/hustcer/star.git"},"bugs":{"url":"https://github.com/hustcer/star/issues"},"keywords":["nodejs","stocks","insider trading"],"dependencies":{"async":"~1.3.0","bluebird":"~2.9.34","blessed":"~0.1.7","blessed-contrib":"~2.2.1","cheerio":"~0.19.0","colors":"~1.1.0","commander":"~2.8.1","iconv":"^2.1.8","js-yaml":"~3.3.0","lodash":"~3.10.0","moment":"~2.10.3","numeral":"~1.5.3","printf":"~0.2.3","request":"2.58.0"},"devDependencies":{"grunt":"^0.4.5","grunt-eslint":"^16.0.0"},"gitHead":"67a3debf29459f92e323310e15679a414f86c7e2","_id":"star@0.2.5","_shasum":"c1839cb5e1813745bbd7d1da32ce846e93954719","_from":".","_npmVersion":"2.13.0","_nodeVersion":"0.12.7","_npmUser":{"name":"hustcer","email":"hustcer@gmail.com"},"dist":{"shasum":"c1839cb5e1813745bbd7d1da32ce846e93954719","tarball":"https://registry.npmjs.org/star/-/star-0.2.5.tgz","integrity":"sha512-ZWEeOEjz9Wi5LLvvotyVHf9+9+Sf5D75EpMJEqmdld5Cb8+R3AWDIc/08FZm0iRUnXD+IcwNsBra7MnBZYxuDA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDXW3i45oRFyImkVJVRvtD9gFjatZcWqdX5tYVgYmddPQIhAKmaNgg13dL6uBv5ZE31c7pPUaA4vyXaR0coNdM5sXnA"}]},"maintainers":[{"name":"hustcer","email":"hustcer@gmail.com"}],"directories":{}},"0.2.6":{"name":"star","author":{"name":"hustcer"},"public":true,"version":"0.2.6","license":"MIT","homepage":"http://traceinvest.com","description":"A STock Analysis and Research tool for terminal users.","main":"star","bin":{"star":"./star.js"},"contributors":[{"name":"Justin Ma","email":"hustcer(at)gmail.com","url":"at"}],"scripts":{"start":"star.js -h"},"engines":{"node":">= 0.12.5"},"repository":{"type":"git","url":"git+https://github.com/hustcer/star.git"},"bugs":{"url":"https://github.com/hustcer/star/issues"},"keywords":["nodejs","stocks","insider trading"],"dependencies":{"async":"~1.4.0","bluebird":"~2.9.34","blessed":"~0.1.14","blessed-contrib":"~2.3.1","cheerio":"~0.19.0","colors":"~1.1.0","commander":"~2.8.1","iconv":"^2.1.8","js-yaml":"~3.3.0","lodash":"~3.10.0","moment":"~2.10.3","numeral":"~1.5.3","printf":"~0.2.3","request":"2.58.0"},"devDependencies":{"grunt":"^0.4.5","grunt-eslint":"^16.0.0"},"gitHead":"efff7a5b9d4ea62c998b80d7502a922b03cdd0fb","_id":"star@0.2.6","_shasum":"0d7201a198e6ee4942ed47437c1a429befb0c467","_from":".","_npmVersion":"2.13.1","_nodeVersion":"0.12.7","_npmUser":{"name":"hustcer","email":"hustcer@gmail.com"},"dist":{"shasum":"0d7201a198e6ee4942ed47437c1a429befb0c467","tarball":"https://registry.npmjs.org/star/-/star-0.2.6.tgz","integrity":"sha512-O/AzybYeZdFLZm0MdFDTwGUU2WJD6g4aPkoBUdmZ1CKIJB7EqNyxfyeXpebOL8sLCCHGWn2UzPgvz4pXywrHmw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQD83ce+eMKe8uWtIxrdZ+QG5WrXc45QyaTPrN1km7wNMAIgFmlhcon4cQbctJt4hrGV6LW3xQNDsgGD9y5JfmSAYsE="}]},"maintainers":[{"name":"hustcer","email":"hustcer@gmail.com"}],"directories":{}},"0.2.7":{"name":"star","author":{"name":"hustcer"},"public":true,"version":"0.2.7","license":"MIT","homepage":"http://traceinvest.com","description":"A STock Analysis and Research tool for terminal users.","main":"star","bin":{"star":"./star.js"},"contributors":[{"name":"Justin Ma","email":"hustcer(at)gmail.com","url":"at"}],"scripts":{"start":"star.js -h"},"engines":{"node":">= 0.12.5"},"repository":{"type":"git","url":"git+https://github.com/hustcer/star.git"},"bugs":{"url":"https://github.com/hustcer/star/issues"},"keywords":["nodejs","stocks","insider trading"],"dependencies":{"async":"~1.4.0","bluebird":"~2.9.34","blessed":"~0.1.15","blessed-contrib":"~2.3.2","cheerio":"~0.19.0","colors":"~1.1.0","commander":"~2.8.1","iconv":"^2.1.8","js-yaml":"~3.3.0","lodash":"~3.10.0","moment":"~2.10.5","numeral":"~1.5.3","printf":"~0.2.3","request":"2.60.0"},"devDependencies":{"grunt":"^0.4.5","grunt-eslint":"^16.0.0"},"gitHead":"dc51ebdd9d7486053bd71b73ecdf2228c98387f2","_id":"star@0.2.7","_shasum":"f4e25e5ec5080d547ee997f7c05e0ddf606f4702","_from":".","_npmVersion":"2.13.1","_nodeVersion":"0.12.7","_npmUser":{"name":"hustcer","email":"hustcer@gmail.com"},"dist":{"shasum":"f4e25e5ec5080d547ee997f7c05e0ddf606f4702","tarball":"https://registry.npmjs.org/star/-/star-0.2.7.tgz","integrity":"sha512-thaSkk3LouedUx+7RfK2I1LvN8Kg+BgjRDVuLCt6a+jU9iKM0dqL+KKAYoQm6KgbyE6WIrej9nso8exT6F0LOg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCoyH5yO4uTIS4U4xzCuz8j9vSzjnmweGlXm3eE2FNxcgIhAPZZQE/WMWBM6vYAope771kBAdse85rPwJ9qDcFWt1jn"}]},"maintainers":[{"name":"hustcer","email":"hustcer@gmail.com"}],"directories":{}},"0.2.8":{"name":"star","author":{"name":"hustcer"},"public":true,"version":"0.2.8","license":"MIT","homepage":"http://traceinvest.com","description":"A STock Analysis and Research tool for terminal users.","main":"star","bin":{"star":"./star.js"},"contributors":[{"name":"Justin Ma","email":"hustcer(at)gmail.com","url":"at"}],"scripts":{"start":"star.js -h"},"engines":{"node":">= 0.12.5"},"repository":{"type":"git","url":"git+https://github.com/hustcer/star.git"},"bugs":{"url":"https://github.com/hustcer/star/issues"},"keywords":["nodejs","stocks","insider trading"],"dependencies":{"async":"~1.4.0","bluebird":"~2.9.34","blessed":"~0.1.15","blessed-contrib":"~2.3.2","cheerio":"~0.19.0","colors":"~1.1.0","commander":"~2.8.1","iconv":"^2.1.8","js-yaml":"~3.3.0","lodash":"~3.10.0","moment":"~2.10.6","numeral":"~1.5.3","printf":"~0.2.3","request":"2.60.0"},"devDependencies":{"grunt":"^0.4.5","grunt-eslint":"^16.0.0"},"gitHead":"68a592ac412c4c4b7cdff2055df3eeae35b5b333","_id":"star@0.2.8","_shasum":"33cd6ad833257b67fbde34b5e47ffcb312b4a562","_from":".","_npmVersion":"2.13.1","_nodeVersion":"0.12.7","_npmUser":{"name":"hustcer","email":"hustcer@gmail.com"},"dist":{"shasum":"33cd6ad833257b67fbde34b5e47ffcb312b4a562","tarball":"https://registry.npmjs.org/star/-/star-0.2.8.tgz","integrity":"sha512-JpfMS9M05TyZ3dfTJsiZFt9spCdceVmd3EYq4i/CkKPpm5a2AyocrLW3Bd86P88H43PxjxRuYW2FEajY/lEKBw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCoIa0cyBMd1cw3dUumKhRVVBtI4Lx615pzcsovi+JK0AIhAJVsi7C2beD5Q7F0g2GWIX3KRtz8METt1ktDXeCZY9+1"}]},"maintainers":[{"name":"hustcer","email":"hustcer@gmail.com"}],"directories":{}},"0.3.0":{"name":"star","author":{"name":"hustcer"},"public":true,"version":"0.3.0","license":"MIT","homepage":"http://traceinvest.com","description":"A STock Analysis and Research tool for terminal users.","main":"star","bin":{"star":"./star.js"},"contributors":[{"name":"Justin Ma","email":"hustcer(at)gmail.com","url":"at"}],"scripts":{"start":"star.js -h"},"engines":{"node":">= 0.12.5"},"repository":{"type":"git","url":"git+https://github.com/hustcer/star.git"},"bugs":{"url":"https://github.com/hustcer/star/issues"},"keywords":["nodejs","stocks","insider trading"],"dependencies":{"async":"~1.4.2","bluebird":"~2.9.34","blessed":"~0.1.80","blessed-contrib":"~2.3.3","cheerio":"~0.19.0","colors":"~1.1.0","commander":"~2.8.1","iconv":"^2.1.10","js-yaml":"~3.3.0","lodash":"~3.10.1","moment":"~2.10.6","numeral":"~1.5.3","printf":"~0.2.3","request":"2.60.0"},"devDependencies":{"grunt":"^0.4.5","grunt-eslint":"^17.1.0","grunt-imageoptim":"^1.4.1"},"gitHead":"37c5375982baf789ca834df1ab875b1260f15107","_id":"star@0.3.0","_shasum":"3e9019725fd6d33d2490364a7e0990bc36157477","_from":".","_npmVersion":"2.13.1","_nodeVersion":"0.12.7","_npmUser":{"name":"hustcer","email":"hustcer@gmail.com"},"dist":{"shasum":"3e9019725fd6d33d2490364a7e0990bc36157477","tarball":"https://registry.npmjs.org/star/-/star-0.3.0.tgz","integrity":"sha512-cEjnSu7cTkMWs16+CfmyLTj8hyJiopNuz3tYWLgecPDJUZFWZE0YR9EDUjDTWz0nOJu1iKKLd2qMn/oGqR/Xmg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIDvqGPTgZeHHUE/Ruz7GhMdnzRW0IpEgE3+Z8rjNuV3rAiEA6KlMortatlC+z+ZOCNcf3BUpeN3rVJPIllTRWxv0QlA="}]},"maintainers":[{"name":"hustcer","email":"hustcer@gmail.com"}],"directories":{}},"0.3.1":{"name":"star","author":{"name":"hustcer"},"public":true,"version":"0.3.1","license":"MIT","homepage":"http://traceinvest.com","description":"A STock Analysis and Research tool for terminal users.","main":"star","bin":{"star":"./star.js"},"contributors":[{"name":"Justin Ma","email":"hustcer(at)gmail.com","url":"at"}],"scripts":{"start":"star.js -h"},"engines":{"node":">= 0.12.5"},"repository":{"type":"git","url":"git+https://github.com/hustcer/star.git"},"bugs":{"url":"https://github.com/hustcer/star/issues"},"keywords":["nodejs","stocks","insider trading"],"dependencies":{"async":"~1.4.2","bluebird":"~2.9.34","blessed":"~0.1.80","blessed-contrib":"~2.3.3","cheerio":"~0.19.0","colors":"~1.1.0","commander":"~2.8.1","iconv":"^2.1.10","js-yaml":"~3.3.0","lodash":"~3.10.1","moment":"~2.10.6","numeral":"~1.5.3","printf":"~0.2.3","request":"2.61.0"},"devDependencies":{"grunt":"^0.4.5","grunt-eslint":"^17.1.0","grunt-imageoptim":"^1.4.1"},"gitHead":"3692ddca0bb7a62ddcb79959bba179aa873393ee","_id":"star@0.3.1","_shasum":"d0e74ce9af799a1f32c066e7ff319e4bc9340d7c","_from":".","_npmVersion":"2.13.4","_nodeVersion":"0.12.7","_npmUser":{"name":"hustcer","email":"hustcer@gmail.com"},"maintainers":[{"name":"hustcer","email":"hustcer@gmail.com"}],"dist":{"shasum":"d0e74ce9af799a1f32c066e7ff319e4bc9340d7c","tarball":"https://registry.npmjs.org/star/-/star-0.3.1.tgz","integrity":"sha512-Fw2FuVEuYJalYakOjiD9EFwXS2Rclmwgy5L+68lrNg1O7gDEPKmRCC1vjyB0ztbfFYGSnuiuxxJftEoXz3tiJw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQD7FWms3qZqTT4BtH6+i/jQ0TGajIbSIdHwmUWuhedtCgIhAObS80sZNm5rbiPlTBqy8uQmjJcN4lRFIOCsOmiQwwqa"}]},"directories":{}},"0.3.2":{"name":"star","author":{"name":"hustcer"},"public":true,"version":"0.3.2","license":"MIT","homepage":"http://traceinvest.com","description":"A STock Analysis and Research tool for terminal users.","main":"star","bin":{"star":"./star.js"},"contributors":[{"name":"Justin Ma","email":"hustcer(at)gmail.com","url":"at"}],"scripts":{"start":"star.js -h"},"engines":{"node":">= 0.12.5"},"repository":{"type":"git","url":"git+https://github.com/hustcer/star.git"},"bugs":{"url":"https://github.com/hustcer/star/issues"},"keywords":["nodejs","stocks","insider trading"],"dependencies":{"async":"~1.4.2","bluebird":"~2.10.1","blessed":"~0.1.80","blessed-contrib":"~2.3.3","cheerio":"~0.19.0","colors":"~1.1.0","commander":"~2.8.1","iconv":"^2.1.11","js-yaml":"~3.4.0","lodash":"~3.10.1","moment":"~2.10.6","numeral":"~1.5.3","printf":"~0.2.3","request":"2.64.0"},"devDependencies":{"grunt":"^0.4.5","grunt-eslint":"^17.2.0","grunt-imageoptim":"^1.4.1"},"gitHead":"c589d454eda25018909ab959593c072b9823c9e9","_id":"star@0.3.2","_shasum":"4acb601d3428e43510456d7f7b9f4f29d5e22d06","_from":".","_npmVersion":"2.13.4","_nodeVersion":"4.1.0","_npmUser":{"name":"hustcer","email":"hustcer@gmail.com"},"maintainers":[{"name":"hustcer","email":"hustcer@gmail.com"}],"dist":{"shasum":"4acb601d3428e43510456d7f7b9f4f29d5e22d06","tarball":"https://registry.npmjs.org/star/-/star-0.3.2.tgz","integrity":"sha512-bpTOe4sIXISitz09/rk2sSXPjpDNENICseqps6BLUxBuVI6r0qvcrWhimWAvRblLbcSx/aQWg6IZVS5VRhg+eQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIGoLJ7+S0ltgRtUWWwfy0r0xIUcr5uGMYoJNYiyIV8n3AiAWShDfs8OWSSaP1ZWg1mtvO/ZVf4qTL4M/UIgQph7lvw=="}]},"directories":{}},"0.3.3":{"name":"star","author":{"name":"hustcer"},"public":true,"version":"0.3.3","license":"MIT","homepage":"http://traceinvest.com","description":"A STock Analysis and Research tool for terminal users.","main":"star","bin":{"star":"./star.js"},"contributors":[{"name":"Justin Ma","email":"hustcer(at)gmail.com","url":"at"}],"scripts":{"start":"star.js -h"},"engines":{"node":">= 4.2.0"},"repository":{"type":"git","url":"git+https://github.com/hustcer/star.git"},"bugs":{"url":"https://github.com/hustcer/star/issues"},"keywords":["nodejs","stocks","insider trading"],"dependencies":{"async":"~1.5.1","bluebird":"~2.10.2","blessed":"~0.1.80","blessed-contrib":"~2.5.3","cheerio":"~0.19.0","colors":"~1.1.0","commander":"~2.9.0","iconv":"^2.1.11","js-yaml":"~3.4.6","lodash":"~3.10.1","moment":"~2.11.0","numeral":"~1.5.3","printf":"~0.2.3","request":"2.67.0"},"devDependencies":{"grunt":"^0.4.5","grunt-eslint":"^17.3.1","grunt-imageoptim":"^1.4.1","gulp":"^3.9.0","gulp-eslint":"^1.1.1","gulp-imagemin":"^2.3.0","imagemin-pngquant":"^4.2.0"},"gitHead":"212ab5ef8ef286c0da9f763db84aed06159cf20e","_id":"star@0.3.3","_shasum":"220dcf644c060d6c2a1bd75fc011eed4cdf666ba","_from":".","_npmVersion":"3.3.12","_nodeVersion":"5.3.0","_npmUser":{"name":"hustcer","email":"hustcer@gmail.com"},"maintainers":[{"name":"hustcer","email":"hustcer@gmail.com"}],"dist":{"shasum":"220dcf644c060d6c2a1bd75fc011eed4cdf666ba","tarball":"https://registry.npmjs.org/star/-/star-0.3.3.tgz","integrity":"sha512-XKshvdE3H59UstJnrtQDWzqNEx6yHHdJSlhdIh6j3GJMageUygZqftTqThDcIEW6+vR2dpJqKE4mibviAOwNWw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIEi0jEImejJiumDn8l9vvEa0jjEFsmpjcGE0eUOEgg3mAiBKJF8Xf2cZMAZEYSaDzyC+uuWvvnZYe7JVsZEEsZNJRA=="}]},"directories":{}},"0.3.5":{"name":"star","author":{"name":"hustcer"},"public":true,"version":"0.3.5","license":"MIT","homepage":"http://traceinvest.com","description":"A STock Analysis and Research tool for terminal users.","main":"star","bin":{"star":"./star.js"},"contributors":[{"name":"Justin Ma","email":"hustcer(at)gmail.com","url":"at"}],"scripts":{"start":"star.js -h"},"engines":{"node":">= 4.2.0"},"repository":{"type":"git","url":"git+https://github.com/hustcer/star.git"},"bugs":{"url":"https://github.com/hustcer/star/issues"},"keywords":["nodejs","stocks","insider trading"],"dependencies":{"async":"~1.5.2","blessed":"~0.1.80","blessed-contrib":"~2.5.3","bluebird":"~2.10.2","cheerio":"~0.19.0","colors":"~1.1.0","columnify":"^1.5.4","commander":"~2.9.0","iconv":"^2.1.11","js-yaml":"~3.5.2","lodash":"~4.0.0","moment":"~2.11.1","numeral":"~1.5.3","request":"2.67.0"},"devDependencies":{"eslint-config-airbnb":"^3.1.0","gulp":"^3.9.0","gulp-eslint":"^1.1.1","gulp-imagemin":"^2.3.0","imagemin-pngquant":"^4.2.0"},"gitHead":"f17682faab626dde79bb7db9511c91e9ab22f878","_id":"star@0.3.5","_shasum":"97e255717473dc3be5021614e501b1e310633c33","_from":".","_npmVersion":"3.3.12","_nodeVersion":"5.4.0","_npmUser":{"name":"hustcer","email":"hustcer@gmail.com"},"maintainers":[{"name":"hustcer","email":"hustcer@gmail.com"}],"dist":{"shasum":"97e255717473dc3be5021614e501b1e310633c33","tarball":"https://registry.npmjs.org/star/-/star-0.3.5.tgz","integrity":"sha512-3f/42HcWXpY/WJkGEgbm7nQDJ7+1oe+MvhOhCWO8A+XpuwIC+bzE9zBfYp/TvnVpdBFuNlxZnRRv0Qay54g+5A==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIClkjpwNeizRgytvGh82UKpeWB8wNP/h7npQNmZ48mLgAiAzsdtiYzb+LAlj0rFjotImliaaPsz8SRpUqsd+RTt05A=="}]},"directories":{}},"0.3.6":{"name":"star","author":{"name":"hustcer"},"public":true,"version":"0.3.6","license":"MIT","homepage":"http://traceinvest.com","description":"A STock Analysis and Research tool for terminal users.","main":"star","bin":{"star":"./star.js"},"contributors":[{"name":"Justin Ma","email":"hustcer(at)gmail.com","url":"at"}],"scripts":{"start":"star.js -h"},"engines":{"node":">= 4.2.0"},"repository":{"type":"git","url":"git+https://github.com/hustcer/star.git"},"bugs":{"url":"https://github.com/hustcer/star/issues"},"keywords":["nodejs","stocks","insider trading"],"dependencies":{"async":"~2.0.0-rc.3","blessed":"~0.1.80","blessed-contrib":"~3.5.5","bluebird":"~3.3.5","cheerio":"~0.20.0","colors":"~1.1.0","columnify":"^1.5.4","commander":"~2.9.0","iconv":"^2.1.11","js-yaml":"~3.6.0","lodash":"~4.11.1","moment":"~2.13.0","numeral":"~1.5.3","request":"2.72.0"},"devDependencies":{"eslint":"^2.8.0","eslint-config-airbnb":"^8.0.0","eslint-plugin-import":"^1.5.0","gulp":"^3.9.1","gulp-eslint":"^2.0.0","gulp-imagemin":"^2.3.0","imagemin-pngquant":"^4.2.2"},"gitHead":"a31572947d72602d365ae53f9ed3f6dbba27065b","_id":"star@0.3.6","_shasum":"9937f88f563b0837f52fdf70aab5e19e8ecec340","_from":".","_npmVersion":"3.8.6","_nodeVersion":"5.11.0","_npmUser":{"name":"hustcer","email":"hustcer@gmail.com"},"maintainers":[{"name":"hustcer","email":"hustcer@gmail.com"}],"dist":{"shasum":"9937f88f563b0837f52fdf70aab5e19e8ecec340","tarball":"https://registry.npmjs.org/star/-/star-0.3.6.tgz","integrity":"sha512-yhyafDo4qET43ObZVvHQRZcNfCduRoM1j/gDxUyZ2sUIzXXGZavrV3yFH7UYj04rygpvgAPzsrFZ8vQuEmdvbg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDKUhBW2rJWeOuQ9BtO/3ReUfTvRr+0T2TgZ+Lq8I6yWgIhAIbw/OJlOl7UQqwPv7DacVBA6tAgzyL0YMuKqLVFmrdv"}]},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/star-0.3.6.tgz_1461663698815_0.6007407382130623"},"directories":{}},"0.3.7":{"name":"star","author":{"name":"hustcer"},"public":true,"version":"0.3.7","license":"MIT","homepage":"http://traceinvest.com","description":"A STock Analysis and Research tool for terminal users.","main":"star","bin":{"star":"./star.js"},"contributors":[{"name":"Justin Ma","email":"hustcer(at)gmail.com","url":"at"}],"scripts":{"start":"star.js -h"},"engines":{"node":">= 4.2.0"},"repository":{"type":"git","url":"git+https://github.com/hustcer/star.git"},"bugs":{"url":"https://github.com/hustcer/star/issues"},"keywords":["nodejs","stocks","insider trading"],"dependencies":{"async":"~2.0.0-rc.3","blessed":"~0.1.80","blessed-contrib":"~3.5.5","bluebird":"~3.3.5","cheerio":"~0.20.0","colors":"~1.1.0","columnify":"^1.5.4","commander":"~2.9.0","iconv":"^2.1.11","js-yaml":"~3.6.0","lodash":"~4.11.1","moment":"~2.13.0","numeral":"~1.5.3","request":"2.72.0"},"devDependencies":{"eslint":"^2.8.0","eslint-config-airbnb":"^8.0.0","eslint-plugin-import":"^1.5.0","gulp":"^3.9.1","gulp-eslint":"^2.0.0","gulp-imagemin":"^2.3.0","imagemin-pngquant":"^4.2.2"},"gitHead":"43d6a7ea4ac13b115f6963a3e1f7625639995efd","_id":"star@0.3.7","_shasum":"9d7a5ad9e6d96691749ec6948558a8fb143ef2ad","_from":".","_npmVersion":"3.8.6","_nodeVersion":"5.11.0","_npmUser":{"name":"hustcer","email":"hustcer@gmail.com"},"maintainers":[{"name":"hustcer","email":"hustcer@gmail.com"}],"dist":{"shasum":"9d7a5ad9e6d96691749ec6948558a8fb143ef2ad","tarball":"https://registry.npmjs.org/star/-/star-0.3.7.tgz","integrity":"sha512-V0OJyHbTt8F6B7yXH26yAjnjzv8xIE1HMtEj4vI2anZ7uGXja4BV2q54AeD7jwwgd3X9r3VxG0l5zQeU9+p3uA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQD8wAUJOMSIqQDC0SxuEp5+pfdtsdPok/8vxx8mLaxbaAIhAPW3hsHow8xk3MSd3Ng+gRnXNryCu41w3CUwf1NldY1u"}]},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/star-0.3.7.tgz_1461896940848_0.8147647755686194"},"directories":{}},"0.3.8":{"name":"star","author":{"name":"hustcer"},"public":true,"version":"0.3.8","license":"MIT","homepage":"http://traceinvest.com","description":"A STock Analysis and Research tool for terminal users.","main":"star","bin":{"star":"./star.js"},"contributors":[{"name":"Justin Ma","email":"hustcer(at)gmail.com","url":"at"}],"scripts":{"start":"star.js -h"},"engines":{"node":">= 4.2.0"},"repository":{"type":"git","url":"git+https://github.com/hustcer/star.git"},"bugs":{"url":"https://github.com/hustcer/star/issues"},"keywords":["nodejs","stocks","insider trading"],"dependencies":{"async":"~2.0.0-rc.5","blessed":"~0.1.80","blessed-contrib":"~3.5.5","bluebird":"~3.4.0","cheerio":"~0.20.0","colors":"~1.1.0","columnify":"^1.5.4","commander":"~2.9.0","iconv":"^2.2.0","js-yaml":"~3.6.1","lodash":"~4.13.1","moment":"~2.13.0","numeral":"~1.5.3","request":"2.72.0"},"devDependencies":{"eslint":"^2.10.2","eslint-config-airbnb":"^9.0.1","eslint-plugin-import":"^1.8.1","gulp":"^3.9.1","gulp-eslint":"^2.0.0","gulp-imagemin":"^3.0.1","imagemin-pngquant":"^5.0.0"},"gitHead":"db927fa945664a5979a115fb3a576b8b4f6f8504","_id":"star@0.3.8","_shasum":"0af25b508d26735f34f7afd136bc6da9a103cec3","_from":".","_npmVersion":"3.9.2","_nodeVersion":"6.2.0","_npmUser":{"name":"hustcer","email":"hustcer@gmail.com"},"maintainers":[{"name":"hustcer","email":"hustcer@gmail.com"}],"dist":{"shasum":"0af25b508d26735f34f7afd136bc6da9a103cec3","tarball":"https://registry.npmjs.org/star/-/star-0.3.8.tgz","integrity":"sha512-AUXw7cvb/gFl3YcJ56pLDgixvNxPm/0bSpNgt67Q7zI7leoPIVnn1YlC52IwxD7ZSNSALTcPestdiyitwNJljQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCLYZOyjzAzEl17ORDrHZC7HzXRMRcxnvVLdjwwHphKMQIgAM/Rxmf6yxrv7yzRfU5z+epYTXGpnGokgti2s9jcsRA="}]},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/star-0.3.8.tgz_1464318208106_0.16982708452269435"},"directories":{}},"0.3.9":{"name":"star","author":{"name":"hustcer"},"public":true,"version":"0.3.9","license":"MIT","homepage":"http://traceinvest.com","description":"A STock Analysis and Research tool for terminal users.","main":"star","bin":{"star":"./star.js"},"contributors":[{"name":"Justin Ma","email":"hustcer(at)gmail.com","url":"at"}],"scripts":{"start":"star.js -h"},"engines":{"node":">= 4.2.0"},"repository":{"type":"git","url":"git+https://github.com/hustcer/star.git"},"bugs":{"url":"https://github.com/hustcer/star/issues"},"keywords":["nodejs","stocks","insider trading"],"dependencies":{"async":"~2.0.0-rc.5","blessed":"~0.1.80","blessed-contrib":"~3.5.5","bluebird":"~3.4.0","cheerio":"~0.20.0","colors":"~1.1.0","columnify":"^1.5.4","commander":"~2.9.0","iconv":"^2.2.0","js-yaml":"~3.6.1","lodash":"~4.13.1","moment":"~2.13.0","numeral":"~1.5.3","request":"2.72.0","strman":"^1.2.2"},"devDependencies":{"eslint":"^2.11.1","eslint-config-airbnb":"^9.0.1","eslint-plugin-import":"^1.8.1","gulp":"^3.9.1","gulp-eslint":"^2.0.0","gulp-imagemin":"^3.0.1","imagemin-pngquant":"^5.0.0"},"gitHead":"97ec566eb8fdcbe2323014ac9f973fe8fd7ced27","_id":"star@0.3.9","_shasum":"b93948ad647037e2c19eb42a2f6e341a871889bc","_from":".","_npmVersion":"3.9.2","_nodeVersion":"6.2.0","_npmUser":{"name":"hustcer","email":"hustcer@gmail.com"},"maintainers":[{"name":"hustcer","email":"hustcer@gmail.com"}],"dist":{"shasum":"b93948ad647037e2c19eb42a2f6e341a871889bc","tarball":"https://registry.npmjs.org/star/-/star-0.3.9.tgz","integrity":"sha512-HQNCbMmgRvm5chN05/8Gs3l+IL0c2MXEra1z3m11FhyYweyVeF7HTv5wRYqAFJjky78/GPWpucTKCfNTpnnHrg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCORn5pT5YCwzW7a3gPhKgIUyC9XpRkactTyspFzpBi1AIgOly3NBgfQYaDVyXsm1Tc/dK0rB7hKJuA4oFGZVFE8nQ="}]},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/star-0.3.9.tgz_1464825518375_0.837504502851516"},"directories":{}},"0.5.0":{"name":"star","author":{"name":"hustcer"},"public":true,"version":"0.5.0","license":"MIT","homepage":"http://uzfin.com","description":"A STock Analysis and Research tool for terminal users.","main":"star","bin":{"star":"./star.js"},"contributors":[{"name":"Justin Ma","email":"hustcer(at)gmail.com","url":"at"}],"scripts":{"start":"star.js -h"},"engines":{"node":">= 4.2.0"},"repository":{"type":"git","url":"git+https://github.com/hustcer/star.git"},"bugs":{"url":"https://github.com/hustcer/star/issues"},"keywords":["nodejs","stocks","insider trading"],"dependencies":{"async":"^2.6.0","blessed":"~0.1.80","blessed-contrib":"^4.7.5","bluebird":"^3.5.1","cheerio":"~1.0.0-rc.2","colors":"~1.1.0","columnify":"^1.5.4","commander":"~2.14.1","iconv":"^2.2.3","js-yaml":"^3.10.0","lodash":"^4.17.5","moment":"^2.20.1","numbro":"^1.11.1","request":"^2.83.0","strman":"^2.0.0"},"devDependencies":{"eslint":"^4.18.0","eslint-config-airbnb":"^16.1.0","eslint-plugin-import":"^2.8.0","gulp":"^3.9.1","gulp-eslint":"^4.0.2","gulp-imagemin":"^4.1.0","gulp-sloc2":"^1.0.1","imagemin-pngquant":"^5.0.0"},"gitHead":"b2f5ac800f90fdf37e9396e1284e5646da01c316","_id":"star@0.5.0","_npmVersion":"5.6.0","_nodeVersion":"9.5.0","_npmUser":{"name":"hustcer","email":"hustcer@gmail.com"},"maintainers":[{"name":"hustcer","email":"hustcer@gmail.com"}],"dist":{"integrity":"sha512-zcAASnfm4tZ26mn2jiCzVnD2p/VapoE0r/3zDWuG6POk+yzt+tEevRouy+BfiVFwqQpga/KEaUf1yZHhyTZxKw==","shasum":"bfa014176c680c02f79b4ec09aeeb86db2e591d6","tarball":"https://registry.npmjs.org/star/-/star-0.5.0.tgz","fileCount":17,"unpackedSize":257481,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIG0vtHr3IF81dQHXQ4UVr5wuz8jWcQe98JgEGbAhAAGmAiEA4hlGptQmUEhZX15NgJwKufODWkJBXbU7r6CcpOHhazQ="}]},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/star_0.5.0_1519125091062_0.2988120748867007"},"_hasShrinkwrap":false}},"homepage":"http://uzfin.com","keywords":["nodejs","stocks","insider trading"],"repository":{"type":"git","url":"git+https://github.com/hustcer/star.git"},"contributors":[{"name":"Justin Ma","email":"hustcer(at)gmail.com","url":"at"}],"author":{"name":"hustcer"},"bugs":{"url":"https://github.com/hustcer/star/issues"},"license":"MIT","readmeFilename":"README.md","users":{"moniarchy":true,"eslam.dev":true,"lzldev":true}}