forked from microsoft/FluidFramework
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
101 lines (101 loc) · 3.59 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
{
"name": "@fluidframework/fluid-runner",
"version": "2.0.0-internal.4.3.0",
"description": "Utility for running various functionality inside a Fluid Framework environment",
"homepage": "https://fluidframework.com",
"repository": {
"type": "git",
"url": "https://github.com/microsoft/FluidFramework.git",
"directory": "packages/tools/fluid-runner"
},
"license": "MIT",
"author": "Microsoft and contributors",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"fluid-runner": "bin/fluid-runner"
},
"scripts": {
"build": "concurrently npm:build:compile npm:lint",
"build:commonjs": "npm run tsc && npm run typetests:gen && npm run build:test",
"build:compile": "concurrently npm:build:commonjs npm:build:esnext",
"build:esnext": "tsc --project ./tsconfig.esnext.json",
"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",
"format": "npm run prettier:fix",
"lint": "npm run prettier && npm run eslint",
"lint:fix": "npm run prettier:fix && npm run eslint:fix",
"prettier": "prettier --check . --ignore-path ../../../.prettierignore",
"prettier:fix": "prettier --write . --ignore-path ../../../.prettierignore",
"test": "npm run test:mocha",
"test:coverage": "nyc npm test -- --reporter xunit --reporter-option output=nyc/junit-report.xml",
"test:mocha": "mocha --ignore 'dist/test/types/*' --recursive dist/test -r node_modules/@fluidframework/mocha-test-setup --unhandled-rejections=strict",
"test:mocha:multireport": "cross-env FLUID_TEST_MULTIREPORT=1 npm run test:mocha",
"test:mocha:verbose": "cross-env FLUID_TEST_VERBOSE=1 npm run test:mocha",
"tsc": "tsc",
"typetests:gen": "fluid-type-test-generator",
"typetests:prepare": "flub generate typetests --prepare --dir . --pin"
},
"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/aqueduct": "workspace:~",
"@fluidframework/common-definitions": "^0.20.1",
"@fluidframework/container-definitions": "workspace:~",
"@fluidframework/container-loader": "workspace:~",
"@fluidframework/core-interfaces": "workspace:~",
"@fluidframework/driver-definitions": "workspace:~",
"@fluidframework/odsp-driver": "workspace:~",
"@fluidframework/odsp-driver-definitions": "workspace:~",
"@fluidframework/telemetry-utils": "workspace:~",
"json2csv": "^5.0.7",
"yargs": "13.2.2"
},
"devDependencies": {
"@fluid-tools/build-cli": "^0.17.0",
"@fluidframework/build-common": "^1.1.0",
"@fluidframework/build-tools": "^0.17.0",
"@fluidframework/eslint-config-fluid": "^2.0.0",
"@fluidframework/fluid-runner-previous": "npm:@fluidframework/[email protected]",
"@fluidframework/mocha-test-setup": "workspace:~",
"@types/mocha": "^9.1.1",
"@types/node": "^14.18.38",
"@types/yargs": "^13",
"concurrently": "^7.6.0",
"cross-env": "^7.0.3",
"eslint": "~8.6.0",
"mocha": "^10.2.0",
"mocha-json-output-reporter": "^2.0.1",
"mocha-multi-reporters": "^1.5.1",
"moment": "^2.21.0",
"nyc": "^15.1.0",
"prettier": "~2.6.2",
"rimraf": "^4.4.0",
"typescript": "~4.5.5"
},
"typeValidation": {
"broken": {}
}
}