forked from jayked/MMM-GoogleTasks
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
73 lines (73 loc) · 2.38 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "MMM-GoogleTasks",
"version": "1.0.0",
"description": "A MagicMirror helper module to show ",
"main": "MMM-GoogleTasks.js",
"scripts": {
"test": "npm run test:unit && npm run test:prettier && npm run lint:js",
"test:unit": "jest",
"test:prettier": "prettier --check **/*.{js,ts,css,json,md,yml}",
"test-ci": "jest --ci --coverage --coverageDirectory=output/coverage/jest",
"lint": "npm run lint:js && npm run lint:prettier",
"lint:prettier": "prettier --write **/*.{js,ts,css,json,md,yml}",
"lint:js": "eslint --ignore-path .eslintignore --cache --fix --max-warnings 0 --ext .ts --ext .js .",
"prepare": "husky install",
"postinstall": "npm run build",
"build": "node --max-old-space-size=8192 node_modules/rollup/dist/bin/rollup -c",
"dev": "rollup -c --sourcemap=inline",
"watch": "npm run dev -- --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/spydersoft-consulting/MMM-GoogleTasks.git"
},
"keywords": [
"MagicMirror",
"Module",
"Scheduler"
],
"author": "Matt Gerega",
"license": "MIT",
"bugs": {
"url": "https://github.com/spydersoft-consulting/MMM-GoogleTasks.git/issues"
},
"homepage": "https://github.com/spydersoft-consulting/MMM-GoogleTasks.git#readme",
"devDependencies": {
"@babel/core": "^7.23.2",
"@babel/preset-env": "^7.23.2",
"@babel/preset-typescript": "^7.23.2",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-typescript": "^11.1.5",
"@testing-library/dom": "^9.3.3",
"@testing-library/jest-dom": "^6.1.4",
"@types/jest": "^29.5.5",
"@types/magicmirror-module": "^2.16.3",
"@types/node-fetch": "^2.6.6",
"@typescript-eslint/eslint-plugin": "^6.7.5",
"@typescript-eslint/parser": "^6.7.5",
"babel-jest": "^29.7.0",
"cross-env": "^7.0.3",
"eslint": "^8.51.0",
"eslint-config-prettier": "^9.0.0",
"eslint-config-standard-with-typescript": "^39.1.1",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-sonarjs": "^0.21.0",
"husky": "^8.0.3",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-junit": "^16.0.0",
"prettier": "^3.0.3",
"rollup": "^4.1.4",
"rollup-plugin-scss": "^4.0.0",
"sass": "^1.69.3",
"typescript": "^5.2.2"
},
"dependencies": {
"commander": "^11.1.0",
"date-fns": "^2.30.0",
"googleapis": "^127.0.0"
}
}