@microsoft/m365-spec-parser 0.2.15-beta.2026072312.0 → 0.2.15
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.
- package/package.json +8 -10
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@microsoft/m365-spec-parser",
|
|
3
|
-
"version": "0.2.15
|
|
3
|
+
"version": "0.2.15",
|
|
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,6 +12,7 @@
|
|
|
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",
|
|
15
16
|
"lint": "eslint \"**/*.ts\"",
|
|
16
17
|
"precommit": "lint-staged",
|
|
17
18
|
"check-format": "prettier --list-different \"src/**/*.ts\" \"test/**/*.ts\" \"*.{js,json}\"",
|
|
@@ -24,10 +25,7 @@
|
|
|
24
25
|
"README.md",
|
|
25
26
|
"LICENSE"
|
|
26
27
|
],
|
|
27
|
-
"repository":
|
|
28
|
-
"type": "git",
|
|
29
|
-
"url": "git+https://github.com/OfficeDev/microsoft-365-agents-toolkit.git"
|
|
30
|
-
},
|
|
28
|
+
"repository": "https://github.com/OfficeDev/TeamsFx",
|
|
31
29
|
"engines": {
|
|
32
30
|
"node": ">=10.0.0"
|
|
33
31
|
},
|
|
@@ -40,7 +38,7 @@
|
|
|
40
38
|
"sideEffects": false,
|
|
41
39
|
"dependencies": {
|
|
42
40
|
"@apidevtools/swagger-parser": "^10.1.1",
|
|
43
|
-
"@microsoft/app-manifest": "1.0.8
|
|
41
|
+
"@microsoft/app-manifest": "1.0.8",
|
|
44
42
|
"fs-extra": "^11.2.0",
|
|
45
43
|
"js-yaml": "^4.1.0",
|
|
46
44
|
"openapi-types": "^7.2.3",
|
|
@@ -120,7 +118,7 @@
|
|
|
120
118
|
"object-inspect": "1.13.1",
|
|
121
119
|
"path-browserify": "^1.0.1",
|
|
122
120
|
"pathval": "^2.0.0",
|
|
123
|
-
"prettier": "^
|
|
121
|
+
"prettier": "^2.4.1",
|
|
124
122
|
"process": "^0.11.10",
|
|
125
123
|
"puppeteer": "^13.1.3",
|
|
126
124
|
"qs": "6.11.0",
|
|
@@ -146,8 +144,8 @@
|
|
|
146
144
|
},
|
|
147
145
|
"lint-staged": {
|
|
148
146
|
"*.{js,jsx,css,ts,tsx}": [
|
|
149
|
-
"eslint --cache --fix --quiet"
|
|
150
|
-
"prettier --cache --write --ignore-unknown"
|
|
147
|
+
"npx eslint --cache --fix --quiet"
|
|
151
148
|
]
|
|
152
|
-
}
|
|
149
|
+
},
|
|
150
|
+
"gitHead": "d26ae14088f00539bdfd989edf79afc6453da229"
|
|
153
151
|
}
|