-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
30 lines (30 loc) · 1.04 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
{
"name": "mira-sdk",
"version": "2.1.1",
"description": "SDK for project-mira",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"merge": "openapi-merge-cli",
"sdk": "npm run sdk:angular && npm run sdk:fetch",
"sdk:angular": "npm run clean:sdk:angular && npx openapi-generator-cli generate --generator-key angular",
"sdk:fetch": "npm run clean:sdk:fetch && npx openapi-generator-cli generate --generator-key fetch",
"clean:sdk:angular": "rimraf sdk/angular/projects/mira-sdk-angular/src/**",
"clean:sdk:fetch": "rimraf sdk/fetch/src/**"
},
"repository": {
"type": "git",
"url": "git+https://github.com/irohalab/mira-sdk.git"
},
"author": "irohalab",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/irohalab/mira-sdk/issues"
},
"homepage": "https://github.com/irohalab/mira-sdk#readme",
"devDependencies": {
"@iouring-engineering/openapi-merge-cli": "^1.5.1",
"@openapitools/openapi-generator-cli": "^2.13.5",
"rimraf": "^6.0.1"
}
}