forked from RedHatInsights/javascript-clients
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.37 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.37 KB
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
31
32
33
34
35
36
37
38
39
40
41
{
"name": "@redhat-cloud-services/javascript-clients",
"version": "0.0.1",
"description": "Javascript clients for swagger API",
"main": "index.js",
"private": true,
"scripts": {
"bootstrap": "lerna exec npm install",
"clear-packages": "lerna exec rm -- -rf node_modules; lerna exec rm -- package-lock.json; rm -rf node_modules",
"prepare": "npm run bootstrap",
"audit": "lerna exec npm audit",
"test": "echo \"Error: no test specified\" && exit 0",
"generate": "npm run generate:prod && npm run doc && npm run build",
"doc": "lerna run doc",
"build": "lerna run build",
"generate:prod": "lerna run generate:prod",
"release:bot": "node config/release.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/RedHatInsights/javascript-clients.git"
},
"author": "",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/RedHatInsights/javascript-clients/issues"
},
"homepage": "https://github.com/RedHatInsights/javascript-clients#readme",
"devDependencies": {
"@octokit/rest": "^17.6.0",
"@openapitools/openapi-generator-cli": "1.0.12-4.3.0",
"@types/node": "^13.11.1",
"@typescript-eslint/eslint-plugin": "^2.28.0",
"axios": "^0.19.2",
"dotenv": "^8.2.0",
"lerna": "^3.22.1",
"typedoc": "^0.17.4",
"typedoc-plugin-markdown": "^2.2.17",
"typescript": "^3.8.3"
}
}