-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 1.17 KB
/
package.json
File metadata and controls
28 lines (28 loc) · 1.17 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
{
"name": "@ephox/bedrock-sample",
"version": "15.1.1",
"author": "Tiny Technologies Inc",
"license": "Apache-2.0",
"scripts": {
"bedrock": "node ../server/bin/bedrock.cjs",
"bedrock-auto": "node ../server/bin/bedrock-auto.cjs",
"test-samples-pass": "bedrock-auto -b chrome-headless --config tsconfig.json --customRoutes routes.json -d src/test/ts/**/pass",
"test-samples-only": "bedrock-auto -b chrome-headless --config tsconfig.json -d src/test/ts/**/only",
"test-samples-pass-js": "bedrock-auto -b chrome-headless -d src/test/js/**/pass",
"test-samples-pass-manual": "bedrock --config tsconfig.json --customRoutes routes.json -d src/test/ts/**/pass",
"test-samples-pass-manual-js": "bedrock -d src/test/js/**/pass",
"test-samples-fail": "bedrock-auto -b chrome-headless --config tsconfig.json -d src/test/ts/**/fail",
"test": "yarn test-samples-pass && yarn test-samples-only && yarn test-samples-pass-js"
},
"dependencies": {
"@ephox/bedrock-client": "^15.0.0"
},
"devDependencies": {
"@ephox/bedrock-server": "^15.1.1"
},
"files": [],
"private": true,
"publishConfig": {
"registry": "https://registry.npmjs.org"
}
}