-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 847 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 847 Bytes
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
{
"name": "@sap/openapi-specification",
"version": "0.15.0",
"description": "SAP OpenAPI Specification for OpenAPI v2.0 (Swagger 2.0) and OpenAPI 3.0",
"author": "SAP SE",
"license": "Apache-2.0",
"main": "./dist/src/index.js",
"types": "./dist/src/index.d.ts",
"files": [
"dist/sap-schemas",
"dist/src/index*"
],
"scripts": {
"build": "rm -rf dist && tsc",
"prepublishOnly": "npm run generate && npm run build",
"generate": "ts-node-dev ./src/generate-specs.ts && prettier --write ./sap-schemas"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SAP/openapi-specification.git"
},
"devDependencies": {
"@types/lodash": "4.14.189",
"@types/node": "18.11.9",
"lodash": "4.17.21",
"prettier": "^2.8.4",
"ts-node-dev": "2.0.0",
"typescript": "4.9.3"
}
}