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
72 lines (72 loc) · 2.97 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 2.97 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
{
"name": "@fluidframework/common-definitions",
"version": "0.21.1000",
"description": "Fluid common definitions",
"homepage": "https://fluidframework.com",
"repository": {
"type": "git",
"url": "https://github.com/microsoft/FluidFramework.git",
"directory": "common/lib/common-definitions"
},
"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 && npm run build:docs",
"build:ci": "npm run build:compile",
"build:compile": "concurrently npm:typetests:gen npm:tsc npm:build:esnext",
"build:docs": "api-extractor run --local --typescript-compiler-folder ./node_modules/typescript && copyfiles -u 1 ./_api-extractor-temp/doc-models/* ../../../_api-extractor-temp/",
"build:esnext": "tsc --project ./tsconfig.esnext.json",
"build:full": "npm run build",
"build:full:compile": "npm run build:compile",
"bump-version": "lerna version minor --no-push --no-git-tag-version && npm run build:gen:bump",
"ci:build": "npm run build:compile",
"ci:build:docs": "api-extractor run --typescript-compiler-folder ./node_modules/typescript && copyfiles -u 1 ./_api-extractor-temp/doc-models/* ../../../_api-extractor-temp/",
"ci:test": "echo No test for this package",
"ci:test:coverage": "echo No test for this package",
"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",
"tsc": "tsc",
"tsc:watch": "tsc --watch",
"tsfmt": "tsfmt --verify",
"tsfmt:fix": "tsfmt --replace",
"typetests:gen": "fluid-type-validator -d .",
"typetests:prepare": "fluid-type-validator -d . -p"
},
"dependencies": {},
"devDependencies": {
"@fluidframework/build-common": "^0.23.0",
"@fluidframework/build-tools": "^0.2.65117",
"@fluidframework/common-definitions-previous": "npm:@fluidframework/common-definitions@^0.20.0",
"@fluidframework/eslint-config-fluid": "^0.28.2000-0",
"@microsoft/api-extractor": "^7.22.2",
"@rushstack/eslint-config": "^2.5.1",
"@typescript-eslint/eslint-plugin": "~5.9.0",
"@typescript-eslint/parser": "~5.9.0",
"concurrently": "^6.2.0",
"copyfiles": "^2.1.0",
"eslint": "~8.6.0",
"eslint-plugin-editorconfig": "~3.2.0",
"eslint-plugin-eslint-comments": "~3.2.0",
"eslint-plugin-import": "~2.25.4",
"eslint-plugin-jest": "~26.1.3",
"eslint-plugin-mocha": "~10.0.3",
"eslint-plugin-promise": "~6.0.0",
"eslint-plugin-react": "~7.28.0",
"eslint-plugin-tsdoc": "~0.2.14",
"eslint-plugin-unicorn": "~40.0.0",
"rimraf": "^2.6.2",
"typescript": "~4.5.5",
"typescript-formatter": "7.1.0"
},
"typeValidation": {
"version": "0.21.1000",
"broken": {}
}
}