-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
61 lines (61 loc) · 2.21 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
{
"name": "@ephox/bedrock",
"description": "NodeJS test runner",
"repository": {
"type": "git",
"url": "https://github.com/ephox/bedrock"
},
"scripts": {
"bedrock": "node modules/server/bin/bedrock.js",
"bedrock-auto": "node modules/server/bin/bedrock-auto.js",
"lint": "yarn eslint 'modules/common/src/**/*.ts' 'modules/client/src/**/*.ts' 'modules/runner/src/**/*.ts' 'modules/server/src/**/*.ts' 'modules/server/tasks/**/*.js'",
"prepublishOnly": "yarn build",
"postinstall": "patch-package",
"clean": "git clean -dfx lib dist modules node_modules",
"build-common": "yarn workspace @ephox/bedrock-common build",
"build-client": "yarn workspace @ephox/bedrock-client build",
"build-runner": "yarn workspace @ephox/bedrock-runner build",
"build-server": "yarn workspace @ephox/bedrock-server build",
"build": "yarn lerna run build --ignore @ephox/bedrock-sample",
"test-common": "yarn workspace @ephox/bedrock-common test",
"test-client": "yarn workspace @ephox/bedrock-client test",
"test-runner": "yarn workspace @ephox/bedrock-runner test",
"test-server": "yarn workspace @ephox/bedrock-server test",
"test-sample": "yarn workspace @ephox/bedrock-sample test",
"test-samples-fail": "yarn workspace @ephox/bedrock-sample test-samples-fail",
"test": "yarn build && yarn lint && yarn lerna run --ignore @ephox/bedrock-sample test"
},
"private": true,
"workspaces": [
"modules/*"
],
"devDependencies": {
"@types/chai": "^4.3.0",
"@types/mocha": "^8.0.3",
"@types/node": "20.1.4",
"@types/request": "^2.48.4",
"@types/which": "^2.0.0",
"@typescript-eslint/eslint-plugin": "^5.24.0",
"@typescript-eslint/parser": "^5.24.0",
"chai": "^4.2.0",
"eslint": "^8.15.0",
"eslint-config-google": "^0.14.0",
"esm": "^3.2.25",
"fast-check": "^1.18.1",
"fast-deep-equal": "^3.1.3",
"grunt": "^1.0.4",
"lerna": "^3.18.3",
"load-grunt-tasks": "^5.1.0",
"mocha": "^8.2.0",
"patch-package": "^6.4.7",
"rimraf": "^3.0.2",
"ts-node": "^10.7.0",
"typescript": "^4.6.4"
},
"engines": {
"node": ">=10.0.0"
},
"author": "Tiny Technologies Inc",
"license": "Apache-2.0",
"files": []
}