-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.58 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.58 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
{
"name": "m365-profiles",
"version": "2.1.0",
"description": "Interactive Microsoft 365 licensing decision tree — Astro multi-page edition.",
"type": "module",
"private": true,
"engines": {
"node": ">=20.0.0"
},
"scripts": {
"dev": "astro dev",
"build": "npm run validate-tree && astro build && npm run test:links",
"preview": "astro preview",
"validate-tree": "node scripts/validate-tree.js",
"test:walk": "node scripts/test-tree-walk.mjs",
"test:state": "node scripts/test-state-invariants.mjs",
"test:links": "node scripts/test-site-links.mjs",
"typecheck": "astro check",
"lint:md": "markdownlint-cli2 \"**/*.md\" \"#node_modules\" \"#dist\" \"#.astro\"",
"lint": "npm run lint:md",
"format": "prettier --check .",
"format:fix": "prettier --write .",
"check": "npm run validate-tree && npm run typecheck && npm run lint && npm run format",
"test": "npm run validate-tree && npm run test:walk && npm run test:state"
},
"repository": {
"type": "git",
"url": "git+https://github.com/blackoutsecure/m365profiles.git"
},
"license": "MIT",
"author": "Dr. Bill Mcilhargey",
"homepage": "https://m365profiles.com",
"bugs": {
"url": "https://github.com/blackoutsecure/m365profiles/issues"
},
"dependencies": {
"@astrojs/mdx": "^4.0.0",
"@astrojs/sitemap": "^3.2.0",
"astro": "^5.5.0",
"jspdf": "^2.5.2"
},
"devDependencies": {
"@astrojs/check": "^0.9.4",
"markdownlint-cli2": "^0.18.0",
"prettier": "^3.4.0",
"prettier-plugin-astro": "^0.14.1",
"typescript": "^5.6.0"
}
}