-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
39 lines (39 loc) · 1.23 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
{
"name": "mmm-bunq",
"version": "1.0.1",
"description": "Show Bunt Information on the MagicMirror",
"main": "MMM-bunq.js",
"author": "Cedrik Hoffmann",
"license": "MIT",
"devDependencies": {
"eslint": "^8.34.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-jsdoc": "^40.0.0",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "^2.8.4",
"stylelint": "^15.1.0",
"stylelint-config-standard": "^30.0.1",
"stylelint-prettier": "^2.0.0"
},
"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:prettier": "prettier . --check",
"test:js": "eslint *.js --config .eslintrc.json --quiet",
"test:css": "stylelint **/*.css --config .stylelintrc.json",
"lint:prettier": "prettier . --write",
"lint:js": "eslint *.js --config .eslintrc.json --fix",
"lint:css": "stylelint **/*.css --config .stylelintrc.json --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/choffmann/MMM-bunq.git"
},
"bugs": {
"url": "https://github.com/choffmann/MMM-bunq/issues"
},
"dependencies": {
"crypto": "latest",
"node-fetch": "^2.6.1"
}
}