generated from rpidanny/typescript-package-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 2.19 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"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 <[email protected]>",
"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"
}
}