UNPKG

stonkinator

Version:

A low level stock data aggregation tool, a boring lib for others to build upon

84 lines (83 loc) 2.06 kB
{ "name": "stonkinator", "version": "1.0.0", "description": "A low level stock data aggregation tool, a boring lib for others to build upon", "main": "lib/index.js", "types": "lib/index.d.ts", "scripts": { "watch": "concurrently \"tsc -w\" \"nodemon lib/index\"", "test": "jest", "build": "tsc", "format": "prettier --write \"src/**/*.ts\" \"src/**/*.js\"", "docs": "typedoc", "lint": "eslint src", "lint:fix": "eslint src --fix", "prepare": "npm run build", "prepublishOnly": "npm test && npm run docs && npm run lint", "preversion": "npm run lint", "version": "npm run format && git add -A src", "postversion": "git push && git push --tags" }, "repository": { "type": "git", "url": "git+https://github.com/AdityaJain1030/stonkinator.git" }, "files": [ "lib/**/*" ], "keywords": [ "SEC", "stonks", "web-scraping", "node", "js" ], "contributors": [ "Aditya Jain <developerguy9@gmail.com> (https://github.com/AdityaJain1030)" ], "license": "GNU-3.0+", "bugs": { "url": "https://github.com/AdityaJain1030/stonkinator/issues" }, "homepage": "https://github.com/AdityaJain1030/stonkinator#readme", "devDependencies": { "@types/cheerio": "^0.22.24", "@types/jest": "^26.0.20", "@types/node-fetch": "^2.5.8", "@typescript-eslint/eslint-plugin": "^4.14.2", "@typescript-eslint/parser": "^4.14.2", "concurrently": "^5.3.0", "eslint": "^7.19.0", "eslint-config-prettier": "^7.2.0", "eslint-plugin-prettier": "^3.3.1", "eslint-plugin-tsdoc": "^0.2.11", "jest": "^26.6.3", "nodemon": "^2.0.7", "pkg": "^4.4.9", "prettier": "^2.2.1", "ts-jest": "^26.5.0", "typedoc": "^0.20.20", "typescript": "^4.1.3" }, "dependencies": { "cheerio": "^1.0.0-rc.5", "node-fetch": "^2.6.1" }, "jest": { "transform": { "^.+\\.(t|j)sx?$": "ts-jest" }, "testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$", "moduleFileExtensions": [ "ts", "tsx", "js", "jsx", "json", "node" ], "testPathIgnorePatterns": [ "/__tests__/mocks/*" ] } }