-
Notifications
You must be signed in to change notification settings - Fork 39
/
Copy pathpackage.json
85 lines (85 loc) · 2.34 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
{
"name": "google-docs-to-markdown",
"version": "1.0.0",
"description": "Convert Google Docs HTML to Markdown",
"author": "Rob Brackett <[email protected]>",
"contributors": [
{
"name": "Michael Bianco",
"url": "https://github.com/iloveitaly"
},
{
"name": "Tamás Halasi",
"url": "https://github.com/trustedtomato"
},
{
"name": "Jack Kingsman",
"url": "https://github.com/jkingsman"
},
{
"name": "Peter Law",
"url": "https://github.com/PeterJCLaw"
},
{
"name": "Marcin Rataj",
"url": "https://github.com/lidel"
},
{
"name": "Ben Sheldon",
"url": "https://github.com/bensheldon"
},
{
"name": "Jace Sleeman",
"url": "https://github.com/TheRealPerson98"
}
],
"license": "BSD-3-Clause",
"main": "./lib-ui/index.js",
"type": "module",
"scripts": {
"build": "mkdir -p dist && webpack",
"clean": "rm -rf dist/*; rm -rf logs/*; rm -rf temp/*",
"start": "mkdir -p dist && webpack serve",
"test": "npm run test-unit && npm run test-e2e",
"test-unit": "wdio run ./wdio.conf.unit.js --coverage",
"test-e2e": "wdio run ./wdio.conf.e2e.js",
"download-fixtures": "node scripts/download-fixtures.js"
},
"devDependencies": {
"@eslint/js": "^9.8.0",
"@stylistic/eslint-plugin-js": "^2.3.0",
"@wdio/browser-runner": "^9.0.9",
"@wdio/cli": "^9.0.9",
"@wdio/local-runner": "^9.0.9",
"@wdio/mocha-framework": "^9.0.8",
"@wdio/spec-reporter": "^9.0.8",
"copy-webpack-plugin": "^11.0.0",
"debug": "^4.3.4",
"eslint": "^9.8.0",
"eslint-plugin-compat": "^6.0.0",
"github-slugger": "^2.0.0",
"globals": "^15.9.0",
"hastscript": "^9.0.0",
"json-stringify-deterministic": "^1.0.12",
"mocha": "^10.2.0",
"path-browserify": "^1.0.1",
"playwright": "^1.39.0",
"prettier": "^3.1.1",
"rehype-dom-parse": "^5.0.0",
"rehype-remark": "^10.0.0",
"rehype-stringify": "^10.0.0",
"remark-gfm": "^4.0.0",
"remark-stringify": "^11.0.0",
"unified": "^11.0.4",
"unist-util-visit": "^5.0.0",
"unist-util-visit-parents": "^6.0.1",
"webdriverio": "^9.0.9",
"webpack": "^5.87.0",
"webpack-bundle-analyzer": "^4.9.0",
"webpack-cli": "^6.0.1",
"webpack-dev-server": "^5.0.2"
},
"engines": {
"node": ">=18.18"
}
}