@microsoft/m365-spec-parser 0.3.0 → 0.3.2-alpha.0b97450fcc.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.
- package/package.json +12 -11
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@microsoft/m365-spec-parser",
|
|
3
|
-
"version": "0.3.0",
|
|
3
|
+
"version": "0.3.2-alpha.0b97450fcc.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,10 +12,8 @@
|
|
|
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
|
-
"
|
|
18
|
-
"precommit": "npm run check-sensitive && lint-staged",
|
|
16
|
+
"precommit": "lint-staged",
|
|
19
17
|
"check-format": "prettier --list-different \"src/**/*.ts\" \"test/**/*.ts\" \"*.{js,json}\"",
|
|
20
18
|
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\" \"*.{js,json}\""
|
|
21
19
|
},
|
|
@@ -26,7 +24,10 @@
|
|
|
26
24
|
"README.md",
|
|
27
25
|
"LICENSE"
|
|
28
26
|
],
|
|
29
|
-
"repository":
|
|
27
|
+
"repository": {
|
|
28
|
+
"type": "git",
|
|
29
|
+
"url": "git+https://github.com/OfficeDev/microsoft-365-agents-toolkit.git"
|
|
30
|
+
},
|
|
30
31
|
"engines": {
|
|
31
32
|
"node": ">=10.0.0"
|
|
32
33
|
},
|
|
@@ -39,9 +40,9 @@
|
|
|
39
40
|
"sideEffects": false,
|
|
40
41
|
"dependencies": {
|
|
41
42
|
"@apidevtools/swagger-parser": "^10.1.1",
|
|
42
|
-
"@microsoft/app-manifest": "1.1.0",
|
|
43
|
+
"@microsoft/app-manifest": "1.1.2-alpha.0b97450fcc.0",
|
|
43
44
|
"fs-extra": "^11.2.0",
|
|
44
|
-
"js-yaml": "^4.
|
|
45
|
+
"js-yaml": "^4.3.0",
|
|
45
46
|
"openapi-types": "^7.2.3",
|
|
46
47
|
"swagger2openapi": "^7.0.8"
|
|
47
48
|
},
|
|
@@ -119,7 +120,7 @@
|
|
|
119
120
|
"object-inspect": "1.13.1",
|
|
120
121
|
"path-browserify": "^1.0.1",
|
|
121
122
|
"pathval": "^2.0.0",
|
|
122
|
-
"prettier": "^
|
|
123
|
+
"prettier": "^3.3.3",
|
|
123
124
|
"process": "^0.11.10",
|
|
124
125
|
"puppeteer": "^13.1.3",
|
|
125
126
|
"qs": "6.11.0",
|
|
@@ -145,8 +146,8 @@
|
|
|
145
146
|
},
|
|
146
147
|
"lint-staged": {
|
|
147
148
|
"*.{js,jsx,css,ts,tsx}": [
|
|
148
|
-
"
|
|
149
|
+
"eslint --cache --fix --quiet",
|
|
150
|
+
"prettier --cache --write --ignore-unknown"
|
|
149
151
|
]
|
|
150
|
-
}
|
|
151
|
-
"gitHead": "b75cb42ff3b6488d344757ad9e46ea0227ea77bc"
|
|
152
|
+
}
|
|
152
153
|
}
|