-
-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
109 lines (109 loc) · 2.88 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "@estruyf/doctor",
"version": "1.12.0",
"description": "Maintain your documentation on SharePoint without pain.",
"main": "dist/main.js",
"homepage": "https://github.com/estruyf/doctor",
"bin": {
"doctor": "bin/doctor",
"doctor_auto": "bin/autocomplete",
"localm365": "bin/localm365"
},
"engines": {
"node": ">=18.0.0"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"start": "npm run build",
"build": "npm run clean && tsc && tsc-alias",
"watch": "node ./scripts/reset-debug.js && tsc -w",
"watch:debug": "node ./scripts/init-debug.js && tsc -w",
"clean": "rm -rf dist mochawesome-report ./cypress/screenshots ./cypress/videos",
"test": "cypress open",
"test:e2e": "cypress open",
"test:e2e:run": "cypress run --browser edge",
"docs": "cd docs && hogo serve",
"prepare": "husky install"
},
"keywords": [
"cli",
"markdown",
"documentation"
],
"author": "Elio Struyf",
"license": "MIT",
"bugs": {
"url": "https://github.com/estruyf/doctor/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/estruyf/doctor.git"
},
"maintainers": [{
"name": "Elio Struyf",
"email": "[email protected]",
"url": "https://www.eliostruyf.com"
}],
"contributors": [{
"name": "Elio Struyf",
"email": "[email protected]",
"url": "https://www.eliostruyf.com"
}],
"funding": [{
"type": "github",
"url": "https://github.com/sponsors/estruyf"
},
{
"type": "buymeacoffee",
"url": "https://www.buymeacoffee.com/zMeFRy9"
}
],
"devDependencies": {
"@types/clean-css": "4.2.3",
"@types/cross-spawn": "6.0.2",
"@types/highlight.js": "10.1.0",
"@types/inquirer": "7.3.1",
"@types/listr": "0.14.2",
"@types/markdown-it": "12.0.1",
"@types/mime": "2.0.3",
"@types/omelette": "0.4.1",
"@types/uuid": "8.3.0",
"cypress": "6.7.1",
"husky": "5.1.2",
"mochawesome": "6.2.2",
"mochawesome-merge": "4.2.0",
"mochawesome-report-generator": "5.2.0",
"node-sp-auth": "3.0.3",
"tsc-alias": "^1.8.8",
"tslib": "2.0.3",
"typescript": "^5.3.3"
},
"dependencies": {
"@fluentui/svg-icons": "1.1.101",
"@pnp/cli-microsoft365": "3.7.0-beta.b01397d",
"applicationinsights": "1.8.10",
"arg": "4.1.3",
"cheerio": "^1.0.0-rc.12",
"clean-css": "5.1.0",
"cross-spawn": "7.0.3",
"esm": "3.2.25",
"fast-glob": "3.2.5",
"gray-matter": "^4.0.3",
"highlight.js": "10.6.0",
"html-entities": "2.1.0",
"inquirer": "7.3.3",
"kleur": "4.1.4",
"listr": "0.14.3",
"markdown-it": "^14.0.0",
"markdown-it-anchor": "^8.6.7",
"markdown-it-shortcode-tag": "1.1.0",
"markdown-it-table-of-contents": "^0.6.0",
"mime": "2.5.2",
"omelette": "0.4.15",
"react": "17.0.1",
"rxjs": "6.6.6",
"uuid": "^9.0.1"
}
}