forked from tylerbutler/FluidFramework
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
175 lines (175 loc) · 5.31 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
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
{
"name": "@fluid-tools/build-cli",
"version": "0.10.0",
"description": "Build tools for the Fluid Framework",
"homepage": "https://fluidframework.com",
"repository": {
"type": "git",
"url": "https://github.com/microsoft/FluidFramework.git",
"directory": "build-tools/packages/build-cli"
},
"license": "MIT",
"author": "Microsoft and contributors",
"sideEffects": false,
"main": "lib/index.js",
"types": "lib/index.d.ts",
"bin": {
"flub": "./bin/run"
},
"files": [
"/bin",
"/lib",
"/oclif.manifest.json"
],
"scripts": {
"build": "npm run build:genver && npm run clean:manifest && concurrently npm:build:compile npm:lint && npm run build:docs",
"build:compile": "npm run tsc && npm run build:copy",
"build:copy": "copyfiles -u 1 \"src/**/*.fsl\" lib",
"build:diagrams": "jssm-viz -i \"./src/machines/*.fsl\"",
"build:docs": "api-extractor run --local",
"build:full": "npm run format && npm run build && npm run build:manifest && npm run build:readme && npm run build:diagrams",
"build:full:compile": "npm run build:full",
"build:genver": "gen-version",
"build:machine-diagram": "jssm-viz -i \"./src/machines/*.fsl\"",
"build:manifest": "oclif manifest",
"build:readme": "node \"./bin/dev\" generate readme --multi",
"ci:build:docs": "api-extractor run",
"clean": "rimraf dist lib oclif.manifest.json *.tsbuildinfo *.build.log",
"clean:manifest": "rimraf oclif.manifest.json",
"eslint": "eslint --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 . --ignore-path ../../../.prettierignore",
"prettier:fix": "prettier --write . --ignore-path ../../../.prettierignore",
"test": "npm run test:mocha",
"test:mocha": "mocha --forbid-only \"test/**/*.test.ts\" --unhandled-rejections=strict",
"test:mocha:report": "npm run test:mocha -- -- --reporter xunit --reporter-option output=nyc/mocha-junit-report.xml",
"test:report": "nyc npm run test:mocha:report",
"tsc": "tsc"
},
"nyc": {
"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": {
"@fluid-tools/version-tools": "^0.10.0",
"@fluidframework/build-tools": "^0.10.0",
"@fluidframework/bundle-size-tools": "^0.10.0",
"@oclif/core": "^1.9.5",
"@oclif/plugin-autocomplete": "^1.3.5",
"@oclif/plugin-commands": "^2.2.0",
"@oclif/plugin-help": "^5",
"@oclif/plugin-not-found": "^2.3.1",
"@oclif/plugin-plugins": "^2.0.1",
"@oclif/test": "^2",
"@octokit/core": "^4.0.5",
"@rushstack/node-core-library": "^3.51.1",
"chalk": "^2.4.2",
"date-fns": "^2.29.1",
"fs-extra": "^9.0.1",
"inquirer": "^8.0.0",
"inquirer-table-prompt": "^0.2.1",
"jssm": "^5.79.18",
"jssm-viz-cli": "^5.83.0",
"npm-check-updates": "^16.0.0",
"oclif": "^3",
"semver": "^7.3.7",
"semver-utils": "^1.1.4",
"simple-git": "^3.14.1",
"sort-json": "^2.0.1",
"strip-ansi": "^6.0.0",
"table": "^6.8.0",
"type-fest": "^2.19.0"
},
"devDependencies": {
"@fluidframework/build-common": "^1.1.0",
"@fluidframework/eslint-config-fluid": "^2.0.0",
"@microsoft/api-extractor": "^7.22.2",
"@types/chai": "^4",
"@types/chai-arrays": "^2.0.0",
"@types/fs-extra": "^8.1.0",
"@types/inquirer": "^8.2.1",
"@types/mocha": "^9.0.0",
"@types/node": "^14.18.0",
"@types/semver": "^7.3.10",
"@types/semver-utils": "^1.1.1",
"@types/sort-json": "^2.0.1",
"@typescript-eslint/eslint-plugin": "~5.9.0",
"@typescript-eslint/parser": "~5.9.0",
"chai": "^4.2.0",
"chai-arrays": "^2.2.0",
"concurrently": "^6.2.0",
"copyfiles": "^2.4.1",
"eslint": "~8.6.0",
"eslint-config-oclif": "^4",
"eslint-config-oclif-typescript": "^1.0.2",
"eslint-config-prettier": "~8.5.0",
"eslint-plugin-eslint-comments": "~3.2.0",
"eslint-plugin-import": "~2.25.4",
"eslint-plugin-unicorn": "~40.0.0",
"eslint-plugin-unused-imports": "~2.0.0",
"globby": "^11",
"mocha": "^10.0.0",
"nyc": "^15.0.0",
"prettier": "~2.6.2",
"rimraf": "^2.6.2",
"ts-node": "^10.2.1",
"tslib": "^2.3.1",
"typescript": "~4.5.5"
},
"engines": {
"node": ">=14.0.0"
},
"oclif": {
"bin": "flub",
"dirname": "flub",
"flexibleTaxonomy": true,
"commands": "./lib/commands",
"additionalHelpFlags": [
"-h"
],
"additionalVersionFlags": [
"-V"
],
"plugins": [
"@oclif/plugin-autocomplete",
"@oclif/plugin-commands",
"@oclif/plugin-help",
"@oclif/plugin-not-found"
],
"repositoryPrefix": "<%- repo %>/blob/main/build-tools/packages/build-cli/<%- commandPath %>",
"topicSeparator": " ",
"topics": {
"bump": {
"description": "Bump the version of packages, release groups, and their dependencies."
},
"check": {
"description": "Check commands are used to verify repo state, apply policy, etc."
},
"generate": {
"description": "Generate commands are used to create/update code, docs, readmes, etc."
},
"release": {
"description": "Release commands are used to manage the Fluid release process."
}
}
}
}