-
-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpackage.json
52 lines (52 loc) · 1.57 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
{
"name": "MMM-Strava",
"version": "2.4.0",
"description": "A MagicMirror Module for displaying your Strava data.",
"main": "MMM-Strava.js",
"scripts": {
"test": "npm run test:unit && npm run test:prettier && npm run test:js && npm run test:css",
"test:unit": "NODE_ENV=test mocha tests --recursive",
"test:prettier": "prettier --check **/*.{js,css,json,md,yml}",
"test:js": "eslint *.js tests/**/*.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 tests/**/*.js --config .eslintrc.json --fix",
"lint:css": "stylelint **/*.css --config .stylelintrc.json --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ianperrin/MMM-Strava.git"
},
"keywords": [
"magic",
"mirror",
"strava"
],
"author": "Ian Perrin",
"contributors": [
"https://github.com/ianperrin/MMM-Strava/graphs/contributors"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/ianperrin/MMM-Strava/issues"
},
"homepage": "https://github.com/ianperrin/MMM-Strava/#readme",
"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.2.0",
"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": "^20.0.0",
"stylelint-prettier": "^1.1.2"
},
"dependencies": {
"moment": "latest",
"strava-v3": "2.0.10"
}
}