mirror of
https://github.com/zhangxiangliang/stock-api.git
synced 2025-01-23 06:00:24 +08:00
46 lines
1.1 KiB
JSON
46 lines
1.1 KiB
JSON
{
|
|
"name": "stock-api",
|
|
"version": "2.0.0",
|
|
"description": "【韭菜小猪】免费股票数据分析相关接口",
|
|
"keywords": [
|
|
"股票",
|
|
"数据分析",
|
|
"接口"
|
|
],
|
|
"main": "dist/index.js",
|
|
"types": "types/index.d.ts",
|
|
"repository": "https://github.com/jiucaixiaozhu/stock-api",
|
|
"author": "zhangxiangliang",
|
|
"license": "MIT",
|
|
"files": [
|
|
"dist/**/*",
|
|
"types/**/*"
|
|
],
|
|
"scripts": {
|
|
"prepublishOnly": "yarn run test",
|
|
"prepare": "rm -rf ./dist && yarn run build",
|
|
"preversion": "npm test",
|
|
"version": "git add -A ./",
|
|
"postversion": "git push && git push --tags",
|
|
"build": "ttsc",
|
|
"watch": "ttsc --watch",
|
|
"test": "jest --config jestconfig.json --coverage",
|
|
"coverage": "yarn run test && codecov"
|
|
},
|
|
"devDependencies": {
|
|
"@types/jest": "^26.0.5",
|
|
"@typescript-eslint/parser": "^3.7.0",
|
|
"codecov": "^3.7.2",
|
|
"jest": "^26.1.0",
|
|
"nyc": "^15.1.0",
|
|
"ts-jest": "^26.1.3",
|
|
"ttypescript": "^1.5.10",
|
|
"typescript": "^3.9.7",
|
|
"typescript-transform-paths": "^1.1.14"
|
|
},
|
|
"dependencies": {
|
|
"iconv-lite": "^0.6.2",
|
|
"superagent": "^5.3.1"
|
|
}
|
|
}
|