stock-api/package.json

30 lines
806 B
JSON
Raw Normal View History

2020-07-21 16:53:37 +08:00
{
"name": "free-api",
"version": "1.0.0",
2020-07-23 01:58:14 +08:00
"description": "免费股票数据分析相关接口 -- 韭菜小猪出品",
"keywords": ["股票", "数据分析", "接口"],
2020-07-21 16:53:37 +08:00
"repository": "https://github.com/jiucaixiaozhu/free-api",
"author": "zhangxiangliang",
"license": "MIT",
2020-07-23 01:58:14 +08:00
"files": ["dist/**/*"],
2020-07-21 16:53:37 +08:00
"scripts": {
2020-07-23 01:58:14 +08:00
"prepublishOnly": "yarn run test",
"prepare": "yarn run build",
"version": "git add -A *",
"postversion": "git push && git push --tags",
2020-07-21 16:53:37 +08:00
"build": "tsc",
"watch": "tsc --watch",
"test": "jest --config jestconfig.json"
},
"devDependencies": {
"@types/jest": "^26.0.5",
"@typescript-eslint/parser": "^3.7.0",
"jest": "^26.1.0",
"ts-jest": "^26.1.3",
"typescript": "^3.9.7"
},
"dependencies": {
"flyio": "^0.6.14"
2020-07-21 16:53:37 +08:00
}
}