-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) 路 1.45 KB
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) 路 1.45 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
{
"name": "mmm-yt-subcount",
"version": "1.0.0",
"description": "MagicMirror Module - Show the subscription from a Youtube Channel on the MagicMirror",
"main": "MMM-YT-SubCount.js",
"author": "Cedrik Hoffmann",
"license": "MIT",
"scripts": {
"test": "npm run test:prettier && npm run test:js && npm run test:css",
"lint": "npm run lint:prettier && npm run lint:js && npm run lint:css",
"test:unit": "NODE_ENV=test mocha tests --recursive",
"test:prettier": "prettier --check **/*.{js,css,json,md,yml}",
"test:js": "eslint *.js --config .eslintrc.json --quiet",
"test:css": "stylelint **/*.css --config .stylelintrc.json",
"lint:prettier": "prettier --write **/*.{js,css,json,md,yml}",
"lint:js": "eslint *.js --config .eslintrc.json --fix",
"lint:css": "stylelint **/*.css --config .stylelintrc.json --fix"
},
"devDependencies": {
"chai": "^4.3.7",
"eslint": "^8.35.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-jsdoc": "^40.0.0",
"eslint-plugin-prettier": "^4.2.1",
"mocha": "^10.2.0",
"module-alias": "^2.2.2",
"prettier": "2.8.4",
"stylelint": "^15.2.0",
"stylelint-config-standard": "^30.0.1",
"stylelint-prettier": "^3.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ianperrin/MMM-YT-SubCount.git"
},
"bugs": {
"url": "https://github.com/ianperrin/MMM-YT-SubCount/issues"
},
"dependencies": {
"node-fetch": "^2.6.9"
}
}