forked from microsoft/FluidFramework
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
135 lines (135 loc) · 3.57 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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
{
"name": "@fluid-tools/version-tools",
"version": "0.52.0",
"description": "Versioning tools for Fluid Framework",
"homepage": "https://fluidframework.com",
"repository": {
"type": "git",
"url": "https://github.com/microsoft/FluidFramework.git",
"directory": "build-tools/packages/version-tools"
},
"license": "MIT",
"author": "Microsoft and contributors",
"sideEffects": false,
"type": "commonjs",
"exports": {
".": {
"default": {
"types": "./lib/index.d.ts",
"default": "./lib/index.js"
}
}
},
"main": "lib/index.js",
"types": "lib/index.d.ts",
"bin": {
"fluv": "./bin/run.js"
},
"files": [
"/bin",
"/lib",
"/oclif.manifest.json"
],
"scripts": {
"build": "fluid-build --task build",
"build:commonjs": "npm run tsc && npm run build:test",
"build:compile": "fluid-build --task compile",
"build:docs": "api-extractor run --local",
"build:manifest": "oclif manifest",
"build:readme": "oclif readme --version 0.0.0",
"build:test": "tsc --project ./src/test/tsconfig.json",
"check:biome": "biome check .",
"check:format": "npm run check:biome",
"ci:build:docs": "api-extractor run",
"clean": "rimraf --glob dist lib oclif.manifest.json \"**/*.tsbuildinfo\" \"**/*.build.log\" _api-extractor-temp nyc",
"clean:manifest": "rimraf --glob oclif.manifest.json",
"compile": "fluid-build . --task compile",
"eslint": "eslint --format stylish src",
"eslint:fix": "eslint --format stylish src --fix --fix-type problem,suggestion,layout",
"format": "npm run format:biome",
"format:biome": "biome check --write .",
"lint": "npm run eslint",
"lint:fix": "npm run eslint:fix",
"postpack": "npm run clean:manifest",
"test": "npm run test:mocha",
"test:coverage": "c8 npm run test",
"test:mocha": "mocha --forbid-only \"lib/test/**/*.test.js\"",
"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": {
"@oclif/core": "^4.0.30",
"@oclif/plugin-autocomplete": "^3.2.7",
"@oclif/plugin-commands": "^4.1.5",
"@oclif/plugin-help": "^6.2.16",
"@oclif/plugin-not-found": "^3.2.24",
"semver": "^7.6.3",
"table": "^6.8.2"
},
"devDependencies": {
"@biomejs/biome": "~1.9.3",
"@fluidframework/build-common": "^2.0.3",
"@fluidframework/build-tools-bin": "npm:@fluidframework/build-tools@~0.49.0",
"@fluidframework/eslint-config-fluid": "^5.4.0",
"@microsoft/api-extractor": "^7.47.11",
"@oclif/test": "^4.1.0",
"@types/chai": "^4.3.20",
"@types/mocha": "^10.0.9",
"@types/node": "^18.19.59",
"@types/semver": "^7.5.8",
"c8": "^7.14.0",
"chai": "^4.5.0",
"concurrently": "^8.2.2",
"eslint": "~8.57.0",
"eslint-config-oclif": "^5.2.1",
"eslint-config-oclif-typescript": "^3.1.12",
"eslint-config-prettier": "~9.1.0",
"mocha": "^10.7.3",
"mocha-multi-reporters": "^1.5.1",
"oclif": "^4.15.16",
"rimraf": "^4.4.1",
"ts-node": "^10.9.2",
"tslib": "^2.8.0",
"typescript": "~5.4.5"
},
"engines": {
"node": ">=18.17.1"
},
"oclif": {
"bin": "fluv",
"dirname": "fluv",
"commands": "./lib/commands",
"additionalHelpFlags": [
"-h"
],
"additionalVersionFlags": [
"-V"
],
"plugins": [
"@oclif/plugin-autocomplete",
"@oclif/plugin-help"
],
"repositoryPrefix": "<%- repo %>/blob/main/build-tools/packages/version-tools/<%- commandPath %>",
"topicSeparator": " ",
"topics": {}
}
}