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
120 lines (120 loc) · 4.26 KB
/
package.json
File metadata and controls
120 lines (120 loc) · 4.26 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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
{
"name": "@fluidframework/common-utils",
"version": "0.30.0",
"description": "Collection of utility functions for Fluid",
"homepage": "https://fluidframework.com",
"repository": "https://github.com/microsoft/FluidFramework",
"license": "MIT",
"author": "Microsoft",
"sideEffects": false,
"main": "dist/index.js",
"module": "lib/index.js",
"browser": {
"./dist/indexNode.js": "./dist/indexBrowser.js",
"./lib/indexNode.js": "./lib/indexBrowser.js"
},
"types": "dist/index.d.ts",
"scripts": {
"bench": "ts-node bench/src/index.ts",
"build": "npm run build:genver && 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:docs": "api-extractor run --local && 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",
"build:genver": "gen-version",
"build:test": "concurrently npm:build:test:mocha npm:build:test:jest",
"build:test:jest": "tsc --project ./src/test/jest/tsconfig.json",
"build:test:mocha": "tsc --project ./src/test/mocha/tsconfig.json",
"bump-version": "npm version minor --no-push --no-git-tag-version && npm run build:genver",
"ci:build": "npm run build:genver && npm run build:compile",
"ci:test": "npm run test:report",
"ci:test:coverage": "npm run test:coverage",
"clean": "rimraf dist lib *.tsbuildinfo *.build.log",
"eslint": "eslint --format stylish src",
"eslint:fix": "eslint --format stylish src --fix",
"lint": "npm run eslint",
"lint:fix": "npm run eslint:fix",
"test": "npm run test:mocha && npm run test:jest",
"test:coverage": "nyc npm run test:report",
"test:jest": "jest",
"test:jest:report": "npm run test:jest -- --ci --reporters=default --reporters=jest-junit",
"test:mocha": "mocha --unhandled-rejections=strict --recursive dist/test/mocha/**/*.spec.js --exit --project test/tsconfig.json",
"test:mocha:report": "npm run test:mocha -- -- --reporter xunit --reporter-option output=nyc/mocha-junit-report.xml",
"test:report": "npm run test:mocha:report && npm run test:jest:report",
"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.19.1",
"@types/events": "^3.0.0",
"assert": "^2.0.0",
"base64-js": "^1.3.1",
"events": "^3.1.0",
"lodash": "^4.17.21",
"sha.js": "^2.4.11"
},
"devDependencies": {
"@fluidframework/build-common": "^0.21.0-0",
"@fluidframework/eslint-config-fluid": "^0.23.0",
"@microsoft/api-extractor": "^7.13.1",
"@types/assert": "^1.5.2",
"@types/base64-js": "^1.3.0",
"@types/benchmark": "^1.0.31",
"@types/jest": "22.2.3",
"@types/jest-environment-puppeteer": "2.2.0",
"@types/mocha": "^5.2.5",
"@types/puppeteer": "1.3.0",
"@types/sinon": "^7.0.13",
"@typescript-eslint/eslint-plugin": "~4.14.0",
"@typescript-eslint/parser": "~4.14.0",
"benchmark": "^2.1.4",
"concurrently": "^5.2.0",
"copyfiles": "^2.1.0",
"eslint": "~7.18.0",
"eslint-plugin-eslint-comments": "~3.2.0",
"eslint-plugin-import": "~2.22.1",
"eslint-plugin-no-null": "~1.0.2",
"eslint-plugin-prefer-arrow": "~1.2.2",
"eslint-plugin-react": "~7.22.0",
"eslint-plugin-unicorn": "~26.0.1",
"jest": "^26.6.3",
"jest-junit": "^10.0.0",
"jest-puppeteer": "^4.4.0",
"mocha": "^8.1.1",
"nyc": "^15.0.0",
"puppeteer": "^2.1.0",
"rimraf": "^2.6.2",
"sinon": "^7.4.2",
"ts-jest": "^26.4.4",
"ts-node": "^7.0.1",
"typescript": "~4.1.3",
"typescript-formatter": "7.1.0"
},
"jest-junit": {
"outputDirectory": "nyc",
"outputName": "jest-junit-report.xml"
}
}