-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.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
{
"name": "inderes-tracker",
"version": "1.0.0",
"description": "Track stock recommendations from Inderes",
"main": "index.js",
"devDependencies": {
"@types/jest": "26.0.24",
"@types/node": "16.4.0",
"@typescript-eslint/eslint-plugin": "4.28.0",
"@typescript-eslint/parser": "4.28.0",
"eslint": "7.31.0",
"eslint-plugin-jest": "24.4.0",
"husky": "7.0.1",
"jest": "27.0.6",
"nock": "13.1.1",
"ts-jest": "27.0.4",
"typescript": "4.3.5"
},
"dependencies": {
"axios": "0.21.1"
},
"husky": {
"hooks": {
"pre-commit": "npm run build && npm run lint && npm run test"
}
},
"private": true,
"scripts": {
"build": "tsc",
"clean": "rm -rf dist",
"lint": "eslint . --ext .ts",
"postinstall": "npx husky install",
"start": "node dist/index.js",
"test": "jest --verbose"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Vilsepi/inderes-tracker.git"
},
"keywords": [
"inderes"
],
"author": "Ville Seppanen",
"license": "The Unlicense",
"bugs": {
"url": "https://github.com/Vilsepi/inderes-tracker/issues"
},
"homepage": "https://github.com/Vilsepi/inderes-tracker#readme"
}