forked from microsoft/FluidFramework
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
133 lines (133 loc) · 6.92 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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
{
"name": "@fluidframework/test-end-to-end-tests",
"version": "2.0.0-internal.1.1.0",
"description": "End to end tests",
"homepage": "https://fluidframework.com",
"repository": {
"type": "git",
"url": "https://github.com/microsoft/FluidFramework.git",
"directory": "packages/test/test-end-to-end-tests"
},
"license": "MIT",
"author": "Microsoft and contributors",
"sideEffects": false,
"scripts": {
"build": "npm run build:genver && concurrently npm:build:compile npm:lint",
"build:compile": "npm run build:test",
"build:full": "npm run build",
"build:full:compile": "npm run build:compile",
"build:genver": "gen-version",
"build:test": "tsc --project ./src/test/tsconfig.json",
"clean": "rimraf dist lib *.tsbuildinfo *.build.log",
"eslint": "eslint --format stylish src",
"eslint:fix": "eslint --format stylish src --fix --fix-type problem,suggestion,layout",
"lint": "npm run eslint",
"lint:fix": "npm run eslint:fix",
"start:tinylicious:test": "tinylicious > tinylicious.log 2>&1",
"test": "npm run test:realsvc",
"test:realsvc": "npm run test:realsvc:local && npm run test:realsvc:tinylicious",
"test:realsvc:frs": "npm run test:realsvc:run -- --driver=r11s --r11sEndpointName=frs --timeout=20s",
"test:realsvc:frs:report": "cross-env FLUID_TEST_REPORT=1 npm run test:realsvc:frs --",
"test:realsvc:local": "npm run test:realsvc:run -- --driver=local",
"test:realsvc:local:report": "cross-env FLUID_TEST_REPORT=1 npm run test:realsvc:local --",
"test:realsvc:odsp": "npm run test:realsvc:run -- --driver=odsp --timeout=20s",
"test:realsvc:odsp:report": "cross-env FLUID_TEST_REPORT=1 npm run test:realsvc:odsp --",
"test:realsvc:r11s": "npm run test:realsvc:run -- --driver=r11s --timeout=5s",
"test:realsvc:report": "cross-env FLUID_TEST_REPORT=1 npm run test:realsvc",
"test:realsvc:routerlicious": "npm run test:realsvc:r11s",
"test:realsvc:routerlicious:report": "cross-env FLUID_TEST_REPORT=1 npm run test:realsvc:r11s --",
"test:realsvc:run": "mocha dist/test --config src/test/.mocharc.js",
"test:realsvc:t9s": "start-server-and-test start:tinylicious:test 7070 test:realsvc:tinylicious:run",
"test:realsvc:tinylicious": "npm run test:realsvc:t9s",
"test:realsvc:tinylicious:report": "cross-env FLUID_TEST_REPORT=1 npm run test:realsvc:t9s",
"test:realsvc:tinylicious:run": "npm run test:realsvc:run -- --driver=t9s --timeout=5s",
"test:realsvc:verbose": "cross-env FLUID_TEST_VERBOSE=1 npm run test:realsvc",
"tsfmt": "tsfmt --verify",
"tsfmt:fix": "tsfmt --replace"
},
"nyc": {
"all": true,
"cache-dir": "nyc/.cache",
"exclude": [
"src/test/**/*.ts",
"dist/test/**/*.js"
],
"exclude-after-remap": false,
"include": [
"src/**/*.ts",
"dist/**/*.js"
],
"report-dir": "nyc/report",
"reporter": [
"cobertura",
"html",
"text"
],
"temp-directory": "nyc/.nyc_output"
},
"dependencies": {
"@fluidframework/agent-scheduler": ">=2.0.0-internal.1.1.0 <2.0.0-internal.2.0.0",
"@fluidframework/aqueduct": ">=2.0.0-internal.1.1.0 <2.0.0-internal.2.0.0",
"@fluidframework/cell": ">=2.0.0-internal.1.1.0 <2.0.0-internal.2.0.0",
"@fluidframework/common-definitions": "^0.20.1",
"@fluidframework/common-utils": "^1.0.0",
"@fluidframework/container-definitions": ">=2.0.0-internal.1.1.0 <2.0.0-internal.2.0.0",
"@fluidframework/container-loader": ">=2.0.0-internal.1.1.0 <2.0.0-internal.2.0.0",
"@fluidframework/container-runtime": ">=2.0.0-internal.1.1.0 <2.0.0-internal.2.0.0",
"@fluidframework/container-runtime-definitions": ">=2.0.0-internal.1.1.0 <2.0.0-internal.2.0.0",
"@fluidframework/container-utils": ">=2.0.0-internal.1.1.0 <2.0.0-internal.2.0.0",
"@fluidframework/core-interfaces": ">=2.0.0-internal.1.1.0 <2.0.0-internal.2.0.0",
"@fluidframework/counter": ">=2.0.0-internal.1.1.0 <2.0.0-internal.2.0.0",
"@fluidframework/datastore": ">=2.0.0-internal.1.1.0 <2.0.0-internal.2.0.0",
"@fluidframework/datastore-definitions": ">=2.0.0-internal.1.1.0 <2.0.0-internal.2.0.0",
"@fluidframework/driver-definitions": ">=2.0.0-internal.1.1.0 <2.0.0-internal.2.0.0",
"@fluidframework/driver-utils": ">=2.0.0-internal.1.1.0 <2.0.0-internal.2.0.0",
"@fluidframework/garbage-collector": ">=2.0.0-internal.1.1.0 <2.0.0-internal.2.0.0",
"@fluidframework/ink": ">=2.0.0-internal.1.1.0 <2.0.0-internal.2.0.0",
"@fluidframework/map": ">=2.0.0-internal.1.1.0 <2.0.0-internal.2.0.0",
"@fluidframework/matrix": ">=2.0.0-internal.1.1.0 <2.0.0-internal.2.0.0",
"@fluidframework/merge-tree": ">=2.0.0-internal.1.1.0 <2.0.0-internal.2.0.0",
"@fluidframework/mocha-test-setup": ">=2.0.0-internal.1.1.0 <2.0.0-internal.2.0.0",
"@fluidframework/odsp-doclib-utils": ">=2.0.0-internal.1.1.0 <2.0.0-internal.2.0.0",
"@fluidframework/odsp-driver-definitions": ">=2.0.0-internal.1.1.0 <2.0.0-internal.2.0.0",
"@fluidframework/ordered-collection": ">=2.0.0-internal.1.1.0 <2.0.0-internal.2.0.0",
"@fluidframework/protocol-definitions": "^1.0.0",
"@fluidframework/register-collection": ">=2.0.0-internal.1.1.0 <2.0.0-internal.2.0.0",
"@fluidframework/request-handler": ">=2.0.0-internal.1.1.0 <2.0.0-internal.2.0.0",
"@fluidframework/runtime-definitions": ">=2.0.0-internal.1.1.0 <2.0.0-internal.2.0.0",
"@fluidframework/runtime-utils": ">=2.0.0-internal.1.1.0 <2.0.0-internal.2.0.0",
"@fluidframework/sequence": ">=2.0.0-internal.1.1.0 <2.0.0-internal.2.0.0",
"@fluidframework/shared-object-base": ">=2.0.0-internal.1.1.0 <2.0.0-internal.2.0.0",
"@fluidframework/telemetry-utils": ">=2.0.0-internal.1.1.0 <2.0.0-internal.2.0.0",
"@fluidframework/test-driver-definitions": ">=2.0.0-internal.1.1.0 <2.0.0-internal.2.0.0",
"@fluidframework/test-loader-utils": ">=2.0.0-internal.1.1.0 <2.0.0-internal.2.0.0",
"@fluidframework/test-pairwise-generator": ">=2.0.0-internal.1.1.0 <2.0.0-internal.2.0.0",
"@fluidframework/test-runtime-utils": ">=2.0.0-internal.1.1.0 <2.0.0-internal.2.0.0",
"@fluidframework/test-utils": ">=2.0.0-internal.1.1.0 <2.0.0-internal.2.0.0",
"@fluidframework/test-version-utils": ">=2.0.0-internal.1.1.0 <2.0.0-internal.2.0.0",
"@fluidframework/undo-redo": ">=2.0.0-internal.1.1.0 <2.0.0-internal.2.0.0",
"cross-env": "^7.0.2",
"mocha": "^10.0.0",
"semver": "^7.3.4",
"sinon": "^7.4.2",
"start-server-and-test": "^1.11.7",
"tinylicious": "^0.4.86381",
"uuid": "^8.3.1"
},
"devDependencies": {
"@fluidframework/build-common": "^0.24.0",
"@fluidframework/eslint-config-fluid": "^0.28.2000",
"@rushstack/eslint-config": "^2.5.1",
"@types/mocha": "^9.1.1",
"@types/nock": "^9.3.0",
"@types/node": "^14.18.0",
"@types/uuid": "^8.3.0",
"concurrently": "^6.2.0",
"eslint": "~8.6.0",
"nock": "^10.0.1",
"nyc": "^15.0.0",
"rimraf": "^2.6.2",
"typescript": "~4.5.5",
"typescript-formatter": "7.1.0"
}
}