-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.28 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.28 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
42
43
44
45
46
47
48
49
50
51
52
53
{
"name": "@altravia/openapi",
"version": "1.4.2",
"description": "Minimal HTTP client for OpenAPI marketplace - simplified SDK with basic HTTP methods",
"main": "dist/index.js",
"files": [
"dist",
"LICENSE",
"README.md"
],
"scripts": {
"test": "tsc && jest test/minimal-client.test.js",
"test:all": "tsc && jest -config=jest.config.json --all",
"build": "tsc",
"tag": "git tag `npm view '@altravia/openapi' version`",
"patch": "npm run build && npm version patch && npm run tag",
"minor": "npm run build && npm version minor && npm run tag"
},
"homepage": "https://developers.openapi.it",
"repository": {
"type": "git",
"url": "https://github.com/openapi-it/Openapi-NodeJS"
},
"bugs": {
"url": "https://github.com/openapi-it/OpenApi-NodeJS/issues"
},
"author": "Altravia Srl",
"license": "MIT",
"private": false,
"keywords": [
"openapi",
"api",
"client",
"sdk",
"http",
"rest",
"nodejs",
"typescript",
"marketplace",
"altravia"
],
"dependencies": {
"axios": "^0.21.2"
},
"devDependencies": {
"@babel/preset-typescript": "^7.14.5",
"@types/jest": "^26.0.23",
"dotenv": "^10.0.0",
"jest": "^27.0.5",
"ts-jest": "^27.0.3",
"typescript": "^4.3.4"
}
}