@epilot/automation-client 0.0.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,74 @@
1
+ {
2
+ "name": "@epilot/automation-client",
3
+ "version": "0.0.3",
4
+ "description": "Client library for epilot automation API",
5
+ "main": "dist/index.js",
6
+ "types": "dist/index.d.ts",
7
+ "author": "epilot GmbH",
8
+ "license": "MIT",
9
+ "repository": {
10
+ "type": "git",
11
+ "url": "git+https://github.com/epilot-dev/sdk-js.git",
12
+ "directory": "clients/automation-client"
13
+ },
14
+ "bugs": {
15
+ "url": "https://github.com/epilot-dev/sdk-js/issues"
16
+ },
17
+ "homepage": "https://github.com/epilot-dev/sdk-js/tree/main/clients/automation-client#readme",
18
+ "keywords": [
19
+ "epilot",
20
+ "sdk",
21
+ "automation"
22
+ ],
23
+ "scripts": {
24
+ "test": "jest",
25
+ "typescript": "tsc",
26
+ "bundle-definition": "webpack",
27
+ "openapi": "../../scripts/update-openapi.sh https://docs.api.epilot.io/automation.yaml",
28
+ "typegen": "echo '/* eslint-disable */' > src/openapi.d.ts && typegen ./src/openapi.json >> src/openapi.d.ts",
29
+ "build": "tsc && npm run bundle-definition",
30
+ "build:watch": "npm run build && tsc -w",
31
+ "prepublishOnly": "npm run typegen && npm run build",
32
+ "lint": "../../node_modules/eslint/bin/eslint.js src"
33
+ },
34
+ "files": [
35
+ "*.js",
36
+ "*.d.ts",
37
+ "**/*.js",
38
+ "**/*.d.ts",
39
+ "**/*.json",
40
+ "!*.test.*",
41
+ "!**/*.test.*",
42
+ "!node_modules",
43
+ "!src",
44
+ "!src/**",
45
+ "!*.config.js"
46
+ ],
47
+ "peerDependencies": {
48
+ "axios": "^0.25.0"
49
+ },
50
+ "dependencies": {
51
+ "buffer": "^6.0.3",
52
+ "https-browserify": "^1.0.0",
53
+ "openapi-client-axios": "^5.1.1",
54
+ "stream-http": "^3.1.1",
55
+ "url": "^0.11.0",
56
+ "util": "^0.12.3"
57
+ },
58
+ "devDependencies": {
59
+ "@types/jest": "^26.0.20",
60
+ "axios": "^0.25.0",
61
+ "copy-webpack-plugin": "^7.0.0",
62
+ "jest": "^26.6.3",
63
+ "json-loader": "^0.5.7",
64
+ "openapi-client-axios-typegen": "^5.0.1",
65
+ "openapicmd": "^1.13.3",
66
+ "ts-jest": "^26.5.0",
67
+ "ts-loader": "^8.0.14",
68
+ "ts-node": "^9.1.1",
69
+ "typescript": "^4.1.3",
70
+ "webpack": "^5.18.0",
71
+ "webpack-cli": "^4.4.0"
72
+ },
73
+ "gitHead": "cbaa47cb33ec5c4906bd40513ec886ec04ae3e9b"
74
+ }
package/tsconfig.json ADDED
@@ -0,0 +1,23 @@
1
+ {
2
+ "compilerOptions": {
3
+ "strict": true,
4
+ "target": "es5",
5
+ "module": "commonjs",
6
+ "moduleResolution": "node",
7
+ "lib": ["esnext", "dom"],
8
+ "experimentalDecorators": true,
9
+ "emitDecoratorMetadata": true,
10
+ "esModuleInterop": true,
11
+ "noImplicitAny": true,
12
+ "strictPropertyInitialization": false,
13
+ "strictNullChecks": false,
14
+ "resolveJsonModule": true,
15
+ "baseUrl": ".",
16
+ "rootDir": "src",
17
+ "outDir": "dist",
18
+ "sourceMap": true,
19
+ "declaration": true
20
+ },
21
+ "include": ["src/**/*"],
22
+ "exclude": ["**/*.test.ts"]
23
+ }