forked from microsoft/FluidFramework
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
121 lines (121 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
{
"name": "@fluid-tools/version-tools",
"version": "0.4.5000",
"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,
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"fluv": "./bin/run"
},
"files": [
"/bin",
"/dist",
"/oclif.manifest.json"
],
"scripts": {
"build": "npm run build:genver && concurrently npm:build:compile npm:lint && npm run build:docs",
"build:clean": "rimraf dist oclif.manifest.json *.tsbuildinfo",
"build:commonjs": "npm run build:clean && npm run tsc",
"build:compile": "npm run build:commonjs",
"build:docs": "api-extractor run --local",
"build:full": "npm run format && npm run build && npm run build:manifest && npm run build:readme",
"build:full:compile": "npm run build:full",
"build:genver": "gen-version",
"build:manifest": "oclif manifest",
"build:readme": "oclif readme",
"ci:build:docs": "api-extractor run",
"clean": "rimraf dist oclif.manifest.json lib *.tsbuildinfo *.build.log",
"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 .",
"prettier:fix": "prettier --write .",
"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",
"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": {
"@oclif/core": "~1.9.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",
"chalk": "^2.4.2",
"semver": "^7.3.7",
"table": "^6.8.0"
},
"devDependencies": {
"@fluidframework/build-common": "^1.0.0",
"@fluidframework/eslint-config-fluid": "^0.28.2000",
"@microsoft/api-extractor": "^7.22.2",
"@types/chai": "^4",
"@types/mocha": "^9.0.0",
"@types/node": "^14.18.0",
"chai": "^4.2.0",
"concurrently": "^6.2.0",
"copyfiles": "^2.4.1",
"cross-env": "^7.0.2",
"eslint": "~8.6.0",
"eslint-config-oclif": "^4",
"eslint-config-oclif-typescript": "^1.0.2",
"eslint-config-prettier": "~8.5.0",
"mocha": "^10.0.0",
"nyc": "^15.0.0",
"oclif": "^3",
"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": "fluv",
"dirname": "fluv",
"commands": "./dist/commands",
"additionalHelpFlags": [
"-h"
],
"plugins": [
"@oclif/plugin-help"
],
"topicSeparator": " ",
"topics": {}
}
}