stock-api/package.json
2020-07-27 01:33:09 +08:00

43 lines
1014 B
JSON

{
"name": "stock-api",
"version": "1.0.0",
"description": "【韭菜小猪】免费股票数据分析相关接口",
"keywords": [
"股票",
"数据分析",
"接口"
],
"main": "dist/index.js",
"repository": "https://github.com/jiucaixiaozhu/stock-api",
"author": "zhangxiangliang",
"license": "MIT",
"files": [
"dist/**/*"
],
"scripts": {
"prepublishOnly": "yarn run test",
"prepare": "yarn run build",
"preversion": "npm test",
"version": "git add -A ./",
"postversion": "git push && git push --tags",
"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"
},
"_moduleAliases": {
"@stocks": "./dist/stocks",
"@utils": "./dist/utils",
"@interfaces": "./dist/interfaces"
},
"dependencies": {
"flyio": "^0.6.14"
}
}