-
Notifications
You must be signed in to change notification settings - Fork 36
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.92 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 1.92 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
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "mmm-pages",
"version": "1.4.0",
"description": "Add pages to your MagicMirror².",
"main": "MMM-pages.js",
"type": "commonjs",
"repository": {
"type": "git",
"url": "git+https://github.com/edward-shen/MMM-pages.git"
},
"keywords": [
"MagicMirror",
"pages",
"slides"
],
"author": "Edward Shen",
"license": "MIT",
"bugs": {
"url": "https://github.com/edward-shen/MMM-pages/issues"
},
"homepage": "https://github.com/edward-shen/MMM-pages#readme",
"scripts": {
"demo": "cd ../../ && MM_CONFIG_FILE=modules/MMM-pages/example_configs/demo.config.js node --run start:dev",
"demo:minimal:class": "cd ../../ && MM_CONFIG_FILE=modules/MMM-pages/example_configs/demo-minimal-class.config.js node --run start:dev",
"demo:minimal:module": "cd ../../ && MM_CONFIG_FILE=modules/MMM-pages/example_configs/demo-minimal-module.config.js node --run start:dev",
"demo:rotation": "cd ../../ && MM_CONFIG_FILE=modules/MMM-pages/example_configs/demo-rotation.config.js node --run start:dev",
"demo:debug": "cd ../../ && MM_CONFIG_FILE=modules/MMM-pages/example_configs/demo-debug.config.js node --run start:dev",
"lint": "eslint",
"lint:fix": "eslint --fix",
"prepare": "node -e \"try{require('simple-git-hooks').run()}catch(e){}\"",
"release": "commit-and-tag-version --commit-all --config ./changelog.config.cjs",
"test": "node --run lint && node --run test:unit",
"test:unit": "node --test tests/unit/**/*.test.js"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"lint-staged": {
"*": [
"eslint --fix"
]
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@eslint/markdown": "^7.5.1",
"@stylistic/eslint-plugin": "^5.9.0",
"commit-and-tag-version": "^12.6.1",
"eslint": "^10.1.0",
"eslint-plugin-jsdoc": "^62.7.0",
"globals": "^17.3.0",
"lint-staged": "^16.2.7",
"simple-git-hooks": "^2.13.1"
}
}