stockprice-generator
Version:
A package for generating synthetic stock price data using various random algorithm models
60 lines (59 loc) • 1.46 kB
JSON
{
"name": "stockprice-generator",
"description": "A package for generating synthetic stock price data using various random algorithm models",
"version": "0.0.22",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/index.mjs"
}
},
"files": [
"dist",
"package.json",
"license",
"README.md"
],
"scripts": {
"build": "tsup",
"build:alt": "npm run build:cjs && npm run build:esm",
"build:cjs": "tsc -p tsconfig.cjs.json",
"build:esm": "tsc -p tsconfig.esm.json",
"build:test": "npm run build && jest",
"test": "jest",
"test:w": "jest --watch",
"prepare": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Ruthgyeul/stockPriceGenerator.git"
},
"author": "Ruthgyeul (https://github.com/Ruthgyeul)",
"license": "MIT",
"bugs": {
"url": "https://github.com/Ruthgyeul/stockPriceGenerator.git/issues"
},
"homepage": "https://github.com/Ruthgyeul/stockPriceGenerator.git#readme",
"keywords": [
"random",
"number",
"stock",
"price",
"generator",
"simulation",
"random-walk",
"GBM",
"finance"
],
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^20.11.24",
"jest": "^29.7.0",
"ts-jest": "^29.1.2",
"tsup": "^8.4.0",
"typescript": "^5.3.3"
}
}