stock-api/package.json

35 lines
783 B
JSON
Raw Permalink Normal View History

2020-07-21 16:53:37 +08:00
{
2020-07-23 02:09:08 +08:00
"name": "stock-api",
2024-04-09 21:48:06 +08:00
"version": "2.0.8",
"description": "免费股票数据分析相关接口",
"repository": "https://github.com/zhangxiangliang/stock-api",
"author": "zhangxiangliang",
2020-07-23 02:15:37 +08:00
"keywords": [
"股票",
"数据分析",
"接口"
],
2020-07-23 02:55:37 +08:00
"main": "dist/index.js",
"types": "dist/index.d.ts",
2020-07-21 16:53:37 +08:00
"scripts": {
2020-08-03 00:47:05 +08:00
"test": "jest --config jestconfig.json --coverage",
"build": "tsc"
2020-07-21 16:53:37 +08:00
},
"license": "MIT",
"files": [
"dist/**/*"
],
2020-07-21 16:53:37 +08:00
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/lodash": "^4.14.202",
"@types/superagent": "^8.1.4",
"jest": "^29.7.0",
"ts-jest": "^29.1.2",
"typescript": "^5.3.3"
},
2020-07-21 16:53:37 +08:00
"dependencies": {
"iconv-lite": "^0.6.3",
"lodash": "^4.17.21",
"superagent": "^8.1.2"
2020-07-21 16:53:37 +08:00
}
2024-04-09 21:48:06 +08:00
}