@microsoft/m365-spec-parser 0.2.14 → 0.2.15-alpha.2c8841ec2d.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1) hide show
  1. package/package.json +10 -8
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@microsoft/m365-spec-parser",
3
- "version": "0.2.14",
3
+ "version": "0.2.15-alpha.2c8841ec2d.0",
4
4
  "description": "OpenAPI specification files Parser for M365 Apps",
5
5
  "main": "dist/index.node.cjs.js",
6
6
  "browser": "dist/index.esm2017.js",
@@ -12,7 +12,6 @@
12
12
  "test:unit:node": "nyc --no-clean -- mocha -r config/mocha.env.ts --config config/.mocharc.json",
13
13
  "test:unit:browser": "karma start karma.conf.cjs --single-run --unit",
14
14
  "test:unit": "npm run test:unit:node && npm run test:unit:browser ",
15
- "lint:staged": "lint-staged",
16
15
  "lint": "eslint \"**/*.ts\"",
17
16
  "precommit": "lint-staged",
18
17
  "check-format": "prettier --list-different \"src/**/*.ts\" \"test/**/*.ts\" \"*.{js,json}\"",
@@ -25,7 +24,10 @@
25
24
  "README.md",
26
25
  "LICENSE"
27
26
  ],
28
- "repository": "https://github.com/OfficeDev/TeamsFx",
27
+ "repository": {
28
+ "type": "git",
29
+ "url": "git+https://github.com/OfficeDev/microsoft-365-agents-toolkit.git"
30
+ },
29
31
  "engines": {
30
32
  "node": ">=10.0.0"
31
33
  },
@@ -38,7 +40,7 @@
38
40
  "sideEffects": false,
39
41
  "dependencies": {
40
42
  "@apidevtools/swagger-parser": "^10.1.1",
41
- "@microsoft/app-manifest": "1.0.7",
43
+ "@microsoft/app-manifest": "1.0.8-alpha.2c8841ec2d.0",
42
44
  "fs-extra": "^11.2.0",
43
45
  "js-yaml": "^4.1.0",
44
46
  "openapi-types": "^7.2.3",
@@ -118,7 +120,7 @@
118
120
  "object-inspect": "1.13.1",
119
121
  "path-browserify": "^1.0.1",
120
122
  "pathval": "^2.0.0",
121
- "prettier": "^2.4.1",
123
+ "prettier": "^3.3.3",
122
124
  "process": "^0.11.10",
123
125
  "puppeteer": "^13.1.3",
124
126
  "qs": "6.11.0",
@@ -144,8 +146,8 @@
144
146
  },
145
147
  "lint-staged": {
146
148
  "*.{js,jsx,css,ts,tsx}": [
147
- "npx eslint --cache --fix --quiet"
149
+ "eslint --cache --fix --quiet",
150
+ "prettier --cache --write --ignore-unknown"
148
151
  ]
149
- },
150
- "gitHead": "d159f6ecc1384bc10d45ff79840a7d7543806ccd"
152
+ }
151
153
  }