-
-
Notifications
You must be signed in to change notification settings - Fork 30
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.2 KB
/
Copy pathpackage.json
File metadata and controls
77 lines (77 loc) · 2.2 KB
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
{
"name": "mmm-jast",
"version": "2.10.6",
"description": "A minimalistic stock ticker based on Yahoo's finance API for the MagicMirror² platform.",
"main": "MMM-Jast.js",
"type": "commonjs",
"repository": {
"type": "git",
"url": "git+https://github.com/jalibu/MMM-Jast.git"
},
"author": "Jan.Litzenburger@gmail.com",
"license": "MIT",
"keywords": [
"magicmirror",
"stock",
"stocks",
"ticker",
"finance",
"yahoo",
"currency",
"currencies",
"crypto",
"market",
"shares"
],
"bugs": {
"url": "https://github.com/jalibu/MMM-Jast/issues"
},
"homepage": "https://github.com/jalibu/MMM-Jast#readme",
"scripts": {
"build": "rollup -c",
"demo": "cd ../../ && MM_CONFIG_FILE=modules/MMM-Jast/config.demo.js node --run start:dev",
"dev": "rollup -c --sourcemap=inline",
"dev:watch": "node --run dev -- --watch",
"type-check": "tsc --noEmit",
"lint": "eslint && prettier --check .",
"lint:fix": "eslint --fix && prettier --write .",
"prepare": "node -e \"try{require('simple-git-hooks').run()}catch(e){}\"",
"release": "commit-and-tag-version --commit-all --config ./changelog.config.js",
"test": "node --run type-check && node --run lint && vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"lint-staged": {
"*": [
"eslint --fix",
"prettier --write --ignore-unknown"
]
},
"dependencies": {
"yahoo-finance2": "^3.15.4"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@rollup/plugin-commonjs": "^29.0.3",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^16.0.3",
"@rollup/plugin-terser": "^1.0.0",
"@rollup/plugin-typescript": "^12.3.0",
"@types/magicmirror-module": "^2.16.6",
"@vitest/coverage-v8": "^4.1.10",
"commit-and-tag-version": "^12.7.3",
"eslint": "^10.6.0",
"eslint-plugin-jsdoc": "^63.0.12",
"lint-staged": "^17.0.8",
"prettier": "^3.9.4",
"rollup": "^4.62.2",
"simple-git-hooks": "^2.13.1",
"tslib": "^2.8.1",
"typescript": "^6.0.3",
"typescript-eslint": "^8.63.0",
"vitest": "^4.1.10"
}
}