forked from microsoft/FluidFramework
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 3.66 KB
/
Copy pathpackage.json
File metadata and controls
98 lines (98 loc) · 3.66 KB
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
{
"name": "@fluid-example/table-document",
"version": "2.0.0-internal.1.1.0",
"description": "Chaincode component containing a table's data",
"homepage": "https://fluidframework.com",
"repository": {
"type": "git",
"url": "https://github.com/microsoft/FluidFramework.git",
"directory": "examples/data-objects/table-document"
},
"license": "MIT",
"author": "Microsoft and contributors",
"sideEffects": false,
"main": "dist/index.js",
"module": "lib/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "concurrently npm:build:compile npm:lint",
"build:commonjs": "npm run tsc && 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",
"lint": "npm run eslint",
"lint:fix": "npm run eslint:fix",
"test": "npm run test:mocha",
"test:coverage": "nyc npm test -- --reporter xunit --reporter-option output=nyc/junit-report.xml --exit",
"test:mocha": "mocha --config src/test/.mocharc.js dist/test",
"test:mocha:verbose": "cross-env FLUID_TEST_VERBOSE=1 npm run test:mocha",
"tsc": "tsc",
"tsfmt": "tsfmt --verify",
"tsfmt:fix": "tsfmt --replace"
},
"nyc": {
"all": true,
"cache-dir": "nyc/.cache",
"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": ">=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/core-interfaces": ">=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/merge-tree": ">=2.0.0-internal.1.1.0 <2.0.0-internal.2.0.0",
"@fluidframework/protocol-definitions": "^1.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/sequence": ">=2.0.0-internal.1.1.0 <2.0.0-internal.2.0.0",
"debug": "^4.1.1"
},
"devDependencies": {
"@fluidframework/build-common": "^0.24.0",
"@fluidframework/eslint-config-fluid": "^0.28.2000",
"@fluidframework/mocha-test-setup": ">=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/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",
"@rushstack/eslint-config": "^2.5.1",
"@types/debug": "^4.1.5",
"@types/mocha": "^9.1.1",
"@types/node": "^14.18.0",
"concurrently": "^6.2.0",
"cross-env": "^7.0.2",
"eslint": "~8.6.0",
"mocha": "^10.0.0",
"nyc": "^15.0.0",
"rimraf": "^2.6.2",
"typescript": "~4.5.5",
"typescript-formatter": "7.1.0"
},
"fluid": {
"browser": {
"umd": {
"files": [
"dist/main.bundle.js"
],
"library": "main"
}
}
}
}