forked from microsoft/FluidFramework
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
97 lines (97 loc) · 3.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
{
"name": "@fluidframework/server-lambdas",
"version": "0.1038.3000",
"description": "Fluid service lambdas",
"homepage": "https://fluidframework.com",
"repository": {
"type": "git",
"url": "https://github.com/microsoft/FluidFramework.git",
"directory": "server/routerlicious/packages/lambdas"
},
"license": "MIT",
"author": "Microsoft and contributors",
"sideEffects": false,
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "concurrently npm:build:compile npm:lint",
"build:compile": "npm run tsc && npm run build:test",
"build:full": "npm run build",
"build:full:compile": "npm run build:compile",
"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",
"test": "mocha --recursive dist/test --unhandled-rejections=strict",
"test:coverage": "nyc npm test -- --reporter xunit --reporter-option output=nyc/junit-report.xml",
"tsc": "tsc",
"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/common-definitions": "^0.20.1",
"@fluidframework/common-utils": "^1.0.0",
"@fluidframework/gitresources": "^0.1038.3000",
"@fluidframework/protocol-base": "^0.1038.3000",
"@fluidframework/protocol-definitions": "^1.1.0",
"@fluidframework/server-lambdas-driver": "^0.1038.3000",
"@fluidframework/server-services-client": "^0.1038.3000",
"@fluidframework/server-services-core": "^0.1038.3000",
"@fluidframework/server-services-telemetry": "^0.1038.3000",
"@types/semver": "^6.0.1",
"async": "^3.2.2",
"axios": "^0.26.0",
"buffer": "^6.0.3",
"double-ended-queue": "^2.1.0-0",
"json-stringify-safe": "^5.0.1",
"lodash": "^4.17.21",
"nconf": "^0.12.0",
"semver": "^6.3.0",
"sha.js": "^2.4.11",
"uuid": "^8.3.1"
},
"devDependencies": {
"@fluidframework/build-common": "^1.1.0",
"@fluidframework/eslint-config-fluid": "^1.1.0",
"@fluidframework/server-test-utils": "^0.1038.3000",
"@rushstack/eslint-config": "^2.5.1",
"@types/async": "^3.2.9",
"@types/json-stringify-safe": "^5.0.0",
"@types/lodash": "^4.14.118",
"@types/mocha": "^9.1.1",
"@types/nconf": "^0.10.2",
"@types/node": "^14.18.0",
"concurrently": "^6.2.0",
"eslint": "~8.6.0",
"mocha": "^10.0.0",
"nyc": "^15.0.0",
"rimraf": "^2.6.2",
"source-map-loader": "^0.2.4",
"ts-loader": "^9.3.0",
"typescript": "~4.5.5",
"typescript-formatter": "7.1.0",
"webpack": "^5.72.0"
}
}