forked from microsoft/FluidFramework
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 2.27 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
{
"name": "@fluidframework/container-runtime-definitions",
"version": "0.28.0",
"description": "Fluid Runtime definitions",
"homepage": "https://fluidframework.com",
"repository": "microsoft/FluidFramework",
"license": "MIT",
"author": "Microsoft",
"sideEffects": "false",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "concurrently npm:build:compile npm:lint",
"build:compile": "npm run tsc",
"build:docs": "api-extractor run --local && copyfiles -u 1 ./_api-extractor-temp/doc-models/* ../../../_api-extractor-temp/",
"build:full": "npm run build",
"build:full:compile": "npm run build:compile",
"clean": "rimraf dist *.tsbuildinfo *.build.log",
"eslint": "eslint --format stylish src",
"eslint:fix": "eslint --ext=ts,tsx --format stylish src --fix",
"lint": "npm run eslint",
"lint:fix": "npm run eslint:fix",
"test:types": "tsd",
"tsc": "tsc",
"tsfmt": "tsfmt --verify",
"tsfmt:fix": "tsfmt --replace"
},
"dependencies": {
"@fluidframework/container-definitions": "^0.28.0",
"@fluidframework/core-interfaces": "^0.28.0",
"@fluidframework/driver-definitions": "^0.28.0",
"@fluidframework/protocol-definitions": "^0.1014.0-0",
"@fluidframework/runtime-definitions": "^0.28.0",
"@types/node": "^10.17.24"
},
"devDependencies": {
"@fluidframework/build-common": "^0.19.2",
"@fluidframework/eslint-config-fluid": "^0.20.0-0",
"@microsoft/api-extractor": "^7.7.2",
"@typescript-eslint/eslint-plugin": "~4.2.0",
"@typescript-eslint/parser": "~4.2.0",
"concurrently": "^5.2.0",
"copyfiles": "^2.1.0",
"eslint": "~7.9.0",
"eslint-plugin-eslint-comments": "~3.2.0",
"eslint-plugin-import": "~2.22.0",
"eslint-plugin-no-null": "~1.0.2",
"eslint-plugin-prefer-arrow": "~1.2.2",
"eslint-plugin-react": "~7.21.2",
"eslint-plugin-unicorn": "~22.0.0",
"rimraf": "^2.6.2",
"tsd": "^0.11.0",
"typescript": "~3.7.4",
"typescript-formatter": "7.1.0"
},
"tsd": {
"directory": "test-d",
"compilerOptions": {
"rootDir": "test-d",
"include": [
"test-d/*"
],
"lib": [
"es2015"
],
"types": [],
"exclude": [
"dist",
"node_modules"
]
}
}
}