-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.37 KB
/
package.json
File metadata and controls
88 lines (88 loc) · 2.37 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
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
{
"name": "@ephox/bedrock-server",
"version": "15.2.0",
"author": "Tiny Technologies Inc",
"license": "Apache-2.0",
"bin": {
"bedrock-auto": "./bin/bedrock-auto.cjs",
"bedrock": "./bin/bedrock.cjs"
},
"scripts": {
"prepublishOnly": "tsc -b",
"build": "yarn prepublishOnly",
"test": "mocha -r esm 'lib/test/ts/**/*Test.js'",
"buildAndTest": "yarn prepublishOnly && yarn test"
},
"engines": {
"node": ">=16.0.0"
},
"dependencies": {
"@aws-sdk/client-device-farm": "^3.354.0",
"@ephox/bedrock-client": "^15.0.0",
"@ephox/bedrock-common": "^15.0.0",
"@ephox/bedrock-runner": "^15.0.2",
"@jsdevtools/coverage-istanbul-loader": "^3.0.5",
"@lambdatest/node-tunnel": "^4.0.4",
"@rspack/core": "^1.5.2",
"@rspack/dev-server": "^1.1.4",
"@wdio/globals": "^8.14.1",
"async": "^3.0.0",
"chalk": "^4.1.1",
"cli-highlight": "^2.1.11",
"command-line-args": "^5.0.0",
"command-line-usage": "^6.0.0",
"core-js": "^3.6.4",
"core-js-bundle": "^3.6.4",
"cross-spawn": "^7.0.0",
"deepmerge": "^4.3.1",
"etag": "^1.8.1",
"finalhandler": "^1.1.2",
"fork-ts-checker-webpack-plugin": "^8.0.0",
"fresh": "^0.5.2",
"glob": "^7.1.6",
"grunt": "^1.0.4",
"jquery": "^3.4.1",
"mime-types": "^2.1.34",
"mkdirp": "^1.0.0",
"portfinder": "^1.0.25",
"recursive-readdir-sync": "^1.0.6",
"serve-static": "^1.10.2",
"source-map-loader": "^3.0.0",
"split2": "^4.2.0",
"ts-checker-rspack-plugin": "^1.1.5",
"ts-loader": "^9.0.0",
"tsconfig-paths-webpack-plugin": "^3.2.0",
"webdriverio": "^8.0.0",
"webpack": "^5.97.1",
"webpack-dev-server": "^5.2.0",
"which": "^2.0.0",
"xml-writer": "^1.6.0"
},
"devDependencies": {
"@ephox/dispute": "^1.0.3",
"@types/command-line-args": "^5.0.0",
"@types/command-line-usage": "^5.0.1",
"@types/cross-spawn": "^6.0.0",
"@types/etag": "^1.8.0",
"@types/finalhandler": "^1.1.0",
"@types/fresh": "^0.5.0",
"@types/jquery": "^3.5.11",
"@types/mime-types": "^2.1.1",
"@types/mkdirp": "^1.0.1",
"@types/split2": "^4.2.0",
"@wdio/types": "^8.0.0"
},
"peerDependencies": {
"typescript": ">=3.8.0"
},
"files": [
"bin/**",
"lib/**",
"src/**",
"tasks/**"
],
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
}
}