-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·50 lines (50 loc) · 1.72 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
{
"name": "MMM-Bilibili-SubCount",
"version": "1.0.0",
"description": "MagicMirror Module - Show the subscription from a Bilibili Channel on the MagicMirror",
"main": "MMM-Bilibili-SubCount.js",
"author": "Jimmy Lin",
"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.2.0",
"eslint": "^7.15.0",
"eslint-config-prettier": "^7.0.0",
"eslint-plugin-jsdoc": "^30.7.8",
"eslint-plugin-prettier": "^3.3.1",
"grunt": "latest",
"grunt-eslint": "latest",
"grunt-jsonlint": "latest",
"grunt-markdownlint": "^1.0.13",
"grunt-stylelint": "latest",
"grunt-yamllint": "latest",
"mocha": "^8.2.1",
"module-alias": "^2.2.2",
"prettier": "2.2.1",
"stylelint": "^13.8.0",
"stylelint-config-prettier": "^8.0.2",
"stylelint-config-standard": "latest",
"stylelint-prettier": "^1.1.2",
"time-grunt": "latest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jimmy0017/MMM-Bilibili-SubCount.git"
},
"bugs": {
"url": "https://github.com/jimmy0017/MMM-Bilibili-SubCount/issues"
},
"dependencies": {
"node-fetch": "^2.6.1"
}
}