@rpidanny/nepse.js
Version:
Fetch stock data from Nepal Stock Exchange
83 lines (82 loc) • 2.24 kB
JSON
{
"name": "@rpidanny/nepse.js",
"version": "2.1.0",
"description": "Fetch stock data from Nepal Stock Exchange",
"main": "dist/index.js",
"types": "dist/index.d.js",
"scripts": {
"prepare": "husky install",
"build": "./node_modules/typescript/bin/tsc -p ./tsconfig.build.json",
"lint": "eslint . --ext .js,.ts",
"lint:fix": "npm run lint -- --fix",
"test": "npm run lint && jest ./test/*",
"test:watch": "jest --detectOpenHandles --watch ./test/*",
"test:watch:test": "jest --detectOpenHandles --watch ./test/unit/nepse-extended.spec.ts",
"dev": "ts-node src/local-test.ts",
"semantic-release": "semantic-release"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rpidanny/nepse.js.git"
},
"keywords": [
"typescript",
"javascript",
"nepse",
"stocks"
],
"author": "Abhishek <abhishek.rpidanny@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/rpidanny/nepse.js/issues"
},
"homepage": "https://github.com/rpidanny/nepse.js#readme",
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-push": "npm run lint"
}
},
"lint-staged": {
"*.ts": [
"npm run lint"
]
},
"devDependencies": {
"@commitlint/cli": "^12.0.0",
"@commitlint/config-conventional": "^12.0.0",
"@rpidanny/eslint-config-typescript": "^1.1.0",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/commit-analyzer": "^9.0.2",
"@semantic-release/git": "^10.0.0",
"@semantic-release/npm": "^9.0.1",
"@types/jest": "^26.0.22",
"@types/node": "^17.0.30",
"eslint": "^7.6.0",
"husky": "^8.0.1",
"jest": "^26.2.2",
"jest-mock-extended": "^2.0.6",
"lint-staged": "^11.0.0",
"nock": "^13.2.4",
"prettier": "^2.0.5",
"semantic-release": "^19.0.2",
"tmp-promise": "^3.0.3",
"ts-jest": "^26.1.4",
"ts-node": "^9.0.0",
"tsc": "^2.0.3",
"typescript": "^4.0.2"
},
"files": [
"dist/**/*"
],
"publishConfig": {
"access": "public"
},
"dependencies": {
"csvtojson": "^2.0.10",
"got": "^11.8.3",
"json2csv": "^5.0.7",
"moment": "^2.29.3"
}
}