forked from microsoft/FluidFramework
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
99 lines (99 loc) · 4.11 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
{
"name": "@fluidframework/azure-client",
"version": "1.1.0",
"description": "A tool to enable creation and loading of Fluid containers using the Azure Fluid Relay service",
"homepage": "https://fluidframework.com",
"repository": {
"type": "git",
"url": "https://github.com/microsoft/FluidFramework.git",
"directory": "packages/framework/azure-client"
},
"license": "MIT",
"author": "Microsoft and contributors",
"sideEffects": false,
"main": "dist/index.js",
"module": "lib/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "npm run build:genver && concurrently npm:build:compile npm:lint && npm run build:docs",
"build:commonjs": "npm run tsc && npm run typetests:gen && npm run build:test",
"build:compile": "concurrently npm:build:commonjs npm:build:esnext",
"build:docs": "api-extractor run --local",
"build:esnext": "tsc --project ./tsconfig.esnext.json",
"build:full": "npm run build",
"build:full:compile": "npm run build:compile",
"build:genver": "gen-version",
"build:test": "tsc --project ./src/test/tsconfig.json",
"ci:build:docs": "api-extractor run",
"clean": "rimraf dist *.tsbuildinfo *.build.log",
"eslint": "eslint --format stylish src",
"eslint:fix": "eslint --format stylish src --fix --fix-type problem,suggestion,layout",
"format": "npm run prettier:fix",
"lint": "npm run prettier && npm run eslint",
"lint:fix": "npm run prettier:fix && npm run eslint:fix",
"postpack": "cd dist && tar -cvf ../azure-client.test-files.tar ./test",
"prettier": "prettier --check . --ignore-path ../../../.prettierignore",
"prettier:fix": "prettier --write . --ignore-path ../../../.prettierignore",
"start:tinylicious:test": "npx @fluidframework/azure-local-service > tinylicious.log 2>&1",
"test:realsvc": "npm run test:realsvc:tinylicious",
"test:realsvc:azure": "cross-env FLUID_CLIENT=azure npm run test:realsvc:azure:run",
"test:realsvc:azure:run": "mocha --unhandled-rejections=strict --recursive dist/test/**/*.spec.js --exit --timeout 10000",
"test:realsvc:tinylicious": "start-server-and-test start:tinylicious:test 7070 test:realsvc:azure:run",
"tsc": "tsc",
"tsfmt": "tsfmt --verify",
"tsfmt:fix": "tsfmt --replace",
"typetests:gen": "fluid-type-validator -g -d ."
},
"dependencies": {
"@fluidframework/common-definitions": "^0.20.1",
"@fluidframework/common-utils": "^0.32.1",
"@fluidframework/container-definitions": "^1.0.1",
"@fluidframework/container-loader": "^1.0.1",
"@fluidframework/core-interfaces": "^1.0.1",
"@fluidframework/driver-definitions": "^1.0.1",
"@fluidframework/driver-utils": "^1.0.1",
"@fluidframework/fluid-static": "^1.0.1",
"@fluidframework/map": "^1.0.1",
"@fluidframework/protocol-definitions": "^1.0.0",
"@fluidframework/routerlicious-driver": "^1.0.1",
"@fluidframework/runtime-utils": "^1.0.1",
"@fluidframework/server-services-client": "^0.1037.1000-0",
"axios": "^0.26.0",
"uuid": "^8.3.1"
},
"devDependencies": {
"@fluidframework/aqueduct": "^1.0.1",
"@fluidframework/azure-client-previous": "npm:@fluidframework/[email protected]",
"@fluidframework/azure-local-service": "^0.1.38773",
"@fluidframework/build-common": "^1.0.0",
"@fluidframework/build-tools": "^0.4.4000",
"@fluidframework/counter": "^1.0.1",
"@fluidframework/eslint-config-fluid": "^0.28.2000",
"@fluidframework/test-client-utils": "^1.0.1",
"@fluidframework/test-utils": "^1.0.1",
"@microsoft/api-extractor": "^7.22.2",
"@rushstack/eslint-config": "^2.5.1",
"@types/mocha": "^9.1.1",
"concurrently": "^6.2.0",
"copyfiles": "^2.4.1",
"cross-env": "^7.0.2",
"eslint": "~8.6.0",
"eslint-config-prettier": "~8.5.0",
"mocha": "^10.0.0",
"prettier": "~2.6.2",
"rimraf": "^2.6.2",
"start-server-and-test": "^1.11.7",
"typescript": "~4.5.5"
},
"peerDependencies": {
"fluid-framework": "^1.0.1"
},
"typeValidation": {
"version": "1.1.0",
"broken": {
"InterfaceDeclaration_AzureClientProps": {
"forwardCompat": false
}
}
}
}