-
Notifications
You must be signed in to change notification settings - Fork 535
/
Copy pathpackage.json
107 lines (107 loc) · 3.43 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
102
103
104
105
106
107
{
"name": "@fluidframework/historian-base",
"version": "0.0.1",
"description": "Base classes for historian",
"homepage": "https://fluidframework.com",
"repository": {
"type": "git",
"url": "https://github.com/microsoft/FluidFramework.git",
"directory": "server/historian/packages/historian-base"
},
"license": "MIT",
"author": "Microsoft and contributors",
"main": "dist/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": "npm run build:commonjs",
"build:test": "tsc --project ./src/test/tsconfig.json",
"clean": "rimraf --glob dist \"**/*.tsbuildinfo\" \"**/*.build.log\" nyc",
"eslint": "eslint --ext=ts,tsx --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 . --cache --ignore-path ../../.prettierignore",
"prettier:fix": "prettier --write . --cache --ignore-path ../../.prettierignore",
"start": "node dist/www.js",
"test": "mocha --recursive dist/test",
"test:coverage": "c8 npm test -- --reporter xunit --reporter-option output=nyc/junit-report.xml",
"test:debug": "mocha inspect --recursive ./dist/test --grep \"Your test key word\" --timeout 0",
"tsc": "tsc"
},
"c8": {
"all": true,
"cache-dir": "nyc/.cache",
"exclude": [
"src/test/**/*.*ts",
"lib/test/**/*.*js"
],
"exclude-after-remap": false,
"include": [
"src/**/*.*ts",
"lib/**/*.*js"
],
"report-dir": "nyc/report",
"reporter": [
"cobertura",
"html",
"text"
],
"temp-directory": "nyc/.nyc_output"
},
"dependencies": {
"@fluidframework/common-utils": "^1.1.1",
"@fluidframework/gitresources": "6.0.0-317195",
"@fluidframework/protocol-definitions": "^3.2.0",
"@fluidframework/server-services": "6.0.0-317195",
"@fluidframework/server-services-client": "6.0.0-317195",
"@fluidframework/server-services-core": "6.0.0-317195",
"@fluidframework/server-services-shared": "6.0.0-317195",
"@fluidframework/server-services-telemetry": "6.0.0-317195",
"@fluidframework/server-services-utils": "6.0.0-317195",
"@types/ioredis-mock": "^8.2.5",
"axios": "^1.7.7",
"body-parser": "^1.20.3",
"compression": "^1.7.3",
"cors": "^2.8.5",
"debug": "^4.3.4",
"express": "^4.21.2",
"ioredis": "^5.2.3",
"ioredis-mock": "^8.9.0",
"json-stringify-safe": "5.0.1",
"jsonwebtoken": "^9.0.0",
"nconf": "^0.11.4",
"uuid": "^3.3.2",
"winston": "^3.6.0"
},
"devDependencies": {
"@fluidframework/build-common": "^2.0.3",
"@fluidframework/eslint-config-fluid": "^5.1.0",
"@fluidframework/server-test-utils": "6.0.0-317195",
"@types/compression": "0.0.36",
"@types/cors": "^2.8.4",
"@types/debug": "^4.1.5",
"@types/express": "^4.17.3",
"@types/express-serve-static-core": "^4.17.32",
"@types/mocha": "^10.0.0",
"@types/nconf": "0.0.37",
"@types/node": "^18.17.1",
"@types/sinon": "^17.0.3",
"@types/supertest": "^2.0.7",
"@types/uuid": "^3.4.4",
"async": "^3.2.2",
"axios-mock-adapter": "^1.19.0",
"c8": "^8.0.1",
"concurrently": "^8.2.1",
"eslint": "~8.55.0",
"eslint-config-prettier": "~9.0.0",
"mocha": "^10.1.0",
"prettier": "~3.0.3",
"rimraf": "^5.0.0",
"sinon": "^19.0.2",
"supertest": "^3.3.0",
"typescript": "~5.1.6"
}
}