-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 3.29 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 3.29 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "@contiva/sap-integration-suite-client",
"author": "Contiva GmbH <mail@contiva.com>",
"version": "2.0.13",
"description": "SAP Cloud Platform Integration API Client",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"clean": "rimraf dist",
"prebuild": "npm run clean",
"prepare": "npm run build",
"test": "npm run build && jest",
"test:e2e": "npm run build && jest --config jest.e2e.config.js",
"test:e2e:watch": "npm run build && jest --config jest.e2e.config.js --watch",
"test:e2e:verbose": "npm run build && jest --config jest.e2e.config.js --verbose",
"lint": "eslint src --ext .ts",
"docs": "typedoc",
"docs:watch": "typedoc --watch",
"docs:clean": "rimraf docs",
"docs:serve": "npx http-server docs -p 8080 -o",
"predocs": "npm run docs:clean",
"publish:github": "npm run build && npm publish --registry=https://npm.pkg.github.com --//npm.pkg.github.com/:_authToken=${GITHUB_TOKEN}",
"publish:npmjs": "npm run build && npm publish --registry=https://registry.npmjs.org",
"release:npm:patch": "git push && npm version patch && npm run publish:npmjs && git push && git push --tags",
"release:npm:minor": "git push && npm version minor && npm run publish:npmjs && git push && git push --tags",
"release:npm:major": "git push && npm version major && npm run publish:npmjs && git push && git push --tags",
"release:github:patch": "git push && npm version patch && npm run publish:github && git push && git push --tags",
"release:github:minor": "git push && npm version minor && npm run publish:github && git push && git push --tags",
"release:github:major": "git push && npm version major && npm run publish:github && git push && git push --tags",
"release:all:patch": "git push && npm version patch && npm run publish:npmjs && npm run publish:github && git push && git push --tags",
"release:all:minor": "git push && npm version minor && npm run publish:npmjs && npm run publish:github && git push && git push --tags",
"release:all:major": "git push && npm version major && npm run publish:npmjs && npm run publish:github && git push && git push --tags"
},
"publishConfig": {
"registry": "https://registry.npmjs.org",
"access": "public"
},
"keywords": [
"sap",
"api",
"client",
"cpi",
"cloud-platform-integration",
"integration-suite",
"integration suite"
],
"license": "MIT",
"private": false,
"dependencies": {
"axios": "^1.6.0",
"dotenv": "^16.3.1",
"redis": "^4.7.0"
},
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/node": "^18.15.11",
"@typescript-eslint/eslint-plugin": "^8.47.0",
"@typescript-eslint/parser": "^8.47.0",
"adm-zip": "^0.5.16",
"eslint": "^9.39.1",
"jest": "^29.7.0",
"rimraf": "^5.0.5",
"typedoc": "^0.28.14",
"typescript": "^5.9.3",
"typescript-eslint": "^8.47.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/contiva/sap-integration-suite-client.git"
},
"bugs": {
"url": "https://github.com/contiva/sap-integration-suite-client/issues"
},
"homepage": "https://github.com/contiva/sap-integration-suite-client#readme",
"github": {
"name": "@contiva/sap-integration-suite-client"
}
}