@sw-tsdk/plugin-connector 0.1.1-next.23

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.
Files changed (66) hide show
  1. package/LICENSE +8 -0
  2. package/README.md +341 -0
  3. package/lib/commands/action/add.d.ts +10 -0
  4. package/lib/commands/action/add.js +88 -0
  5. package/lib/commands/action/add.js.map +1 -0
  6. package/lib/commands/action/input.d.ts +13 -0
  7. package/lib/commands/action/input.js +69 -0
  8. package/lib/commands/action/input.js.map +1 -0
  9. package/lib/commands/action/output.d.ts +13 -0
  10. package/lib/commands/action/output.js +68 -0
  11. package/lib/commands/action/output.js.map +1 -0
  12. package/lib/commands/action/run.d.ts +23 -0
  13. package/lib/commands/action/run.js +142 -0
  14. package/lib/commands/action/run.js.map +1 -0
  15. package/lib/commands/asset/add.d.ts +10 -0
  16. package/lib/commands/asset/add.js +50 -0
  17. package/lib/commands/asset/add.js.map +1 -0
  18. package/lib/commands/connector/build.d.ts +17 -0
  19. package/lib/commands/connector/build.js +71 -0
  20. package/lib/commands/connector/build.js.map +1 -0
  21. package/lib/commands/connector/create-source.d.ts +9 -0
  22. package/lib/commands/connector/create-source.js +31 -0
  23. package/lib/commands/connector/create-source.js.map +1 -0
  24. package/lib/commands/connector/create.d.ts +21 -0
  25. package/lib/commands/connector/create.js +169 -0
  26. package/lib/commands/connector/create.js.map +1 -0
  27. package/lib/commands/connector/logo.d.ts +10 -0
  28. package/lib/commands/connector/logo.js +31 -0
  29. package/lib/commands/connector/logo.js.map +1 -0
  30. package/lib/commands/connector/save.d.ts +12 -0
  31. package/lib/commands/connector/save.js +37 -0
  32. package/lib/commands/connector/save.js.map +1 -0
  33. package/lib/commands/connector/sign.d.ts +15 -0
  34. package/lib/commands/connector/sign.js +58 -0
  35. package/lib/commands/connector/sign.js.map +1 -0
  36. package/lib/commands/connector/update.d.ts +11 -0
  37. package/lib/commands/connector/update.js +54 -0
  38. package/lib/commands/connector/update.js.map +1 -0
  39. package/lib/commands/connector/validate.d.ts +14 -0
  40. package/lib/commands/connector/validate.js +90 -0
  41. package/lib/commands/connector/validate.js.map +1 -0
  42. package/lib/common.d.ts +3 -0
  43. package/lib/common.js +43 -0
  44. package/lib/common.js.map +1 -0
  45. package/lib/index.d.ts +2 -0
  46. package/lib/index.js +4 -0
  47. package/lib/index.js.map +1 -0
  48. package/lib/templates/assets/apikey.yaml +34 -0
  49. package/lib/templates/assets/custom.yaml +22 -0
  50. package/lib/templates/assets/http_basic.yaml +38 -0
  51. package/lib/templates/assets/http_bearer.yaml +34 -0
  52. package/lib/templates/assets/oauth2_client_credentials.yaml +51 -0
  53. package/lib/templates/python_310_definition/template/connector/config/actions/example.yaml +40 -0
  54. package/lib/templates/python_310_definition/template/connector/config/assets/example.yaml +27 -0
  55. package/lib/templates/python_310_definition/template/data/asset.json +1 -0
  56. package/lib/templates/python_310_definition/template/docs/CHANGELOG.md.t +7 -0
  57. package/lib/templates/python_310_definition/template/docs/README.md +38 -0
  58. package/lib/templates/python_310_definition/template/requirements.txt +0 -0
  59. package/lib/types/connector-types.d.ts +29 -0
  60. package/lib/types/connector-types.js +14 -0
  61. package/lib/types/connector-types.js.map +1 -0
  62. package/lib/types/index.d.ts +1 -0
  63. package/lib/types/index.js +5 -0
  64. package/lib/types/index.js.map +1 -0
  65. package/oclif.manifest.json +1 -0
  66. package/package.json +91 -0
@@ -0,0 +1,38 @@
1
+ ## Overview
2
+
3
+ A brief description goes here. Be sure to provide an overview of what the plugin does. Include description of the
4
+ product being integrated, plus use cases/value prop of the Swimlane integration.
5
+
6
+ ## Prerequisites
7
+
8
+ Prerequisites, everything outside of the plugin itself. This should include info on how to
9
+ configure the device (API Key, Perms, ect)
10
+
11
+ ## Capabilities
12
+
13
+ This plugin provides the following capabilities:
14
+
15
+ * Capabilities
16
+ * Go
17
+ * Here
18
+ * e.g. Manage Firewall Policies instead of listing each individual tasks
19
+
20
+ ### Limitations
21
+
22
+ Include information about known limitations here, including supported or minimum versions, especially
23
+ known unsupported versions.
24
+
25
+ ## Asset Setup
26
+
27
+ The content here should discuss asset setup in a conversational manner. Be sure to include any known login
28
+ and test connection errors.
29
+
30
+ ## Tasks Setup
31
+ Special task setup as needed depending on plugin, exclude if empty.
32
+
33
+ Known available allowed input options from enum type selection
34
+
35
+ ## Notes
36
+
37
+ * Any other notes not fitting other sections go here.
38
+ * Any reference URLs to external docs or other resources
@@ -0,0 +1,29 @@
1
+ import { ConnectorManifest } from '@swimlane/connector-interfaces';
2
+ export interface enhancedConnectorManifest extends ConnectorManifest {
3
+ meta: {
4
+ imageRepository: string;
5
+ };
6
+ }
7
+ export declare type ConnectorQuestions = {
8
+ vendor: string;
9
+ product: string;
10
+ family: string;
11
+ description: string;
12
+ logoPath?: string;
13
+ template: string;
14
+ author: string;
15
+ authorEmail: string;
16
+ homepage: string;
17
+ };
18
+ export declare type ActionQuestions = {
19
+ title: string;
20
+ method?: string;
21
+ endpoint?: string;
22
+ description: string;
23
+ };
24
+ export declare const repoBaseTemplateMap: {
25
+ [index: string]: any;
26
+ };
27
+ export declare const codacyBaseRepoMap: {
28
+ [index: string]: any;
29
+ };
@@ -0,0 +1,14 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.codacyBaseRepoMap = exports.repoBaseTemplateMap = void 0;
4
+ exports.repoBaseTemplateMap = {
5
+ 'python_3.7_swimlane': 'connector-python-template',
6
+ python_310_definition: 'connector-python-definition-template',
7
+ node_18: 'connector-node-template',
8
+ };
9
+ exports.codacyBaseRepoMap = {
10
+ 'python_3.7_swimlane': 'python_connectors',
11
+ python_310_definition: 'python_connectors',
12
+ node_18: '',
13
+ };
14
+ //# sourceMappingURL=connector-types.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"connector-types.js","sourceRoot":"","sources":["../../src/types/connector-types.ts"],"names":[],"mappings":";;;AA4Ba,QAAA,mBAAmB,GAA0B;IACxD,qBAAqB,EAAE,2BAA2B;IAClD,qBAAqB,EAAE,sCAAsC;IAC7D,OAAO,EAAE,yBAAyB;CACnC,CAAA;AAEY,QAAA,iBAAiB,GAA0B;IACtD,qBAAqB,EAAE,mBAAmB;IAC1C,qBAAqB,EAAE,mBAAmB;IAC1C,OAAO,EAAE,EAAE;CACZ,CAAA"}
@@ -0,0 +1 @@
1
+ export * from './connector-types';
@@ -0,0 +1,5 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ const tslib_1 = require("tslib");
4
+ tslib_1.__exportStar(require("./connector-types"), exports);
5
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/types/index.ts"],"names":[],"mappings":";;;AAAA,4DAAiC"}
@@ -0,0 +1 @@
1
+ {"version":"0.1.1-next.23+038e7a6","commands":{"action:add":{"id":"action:add","description":"Update a connector action.","strict":true,"pluginName":"@sw-tsdk/plugin-connector","pluginAlias":"@sw-tsdk/plugin-connector","pluginType":"core","aliases":[],"flags":{"directory":{"name":"directory","type":"option","char":"d","description":"Root directory of the repository.","multiple":false,"default":"./"},"template":{"name":"template","type":"option","char":"t","description":"action template to scaffold","multiple":false,"options":["node_18","python_310_definition","python_3.7_swimlane"],"default":"python_310_definition"},"help":{"name":"help","type":"boolean","char":"h","description":"Show CLI help.","allowNo":false}},"args":[]},"action:input":{"id":"action:input","description":"Update action input schema.","strict":true,"pluginName":"@sw-tsdk/plugin-connector","pluginAlias":"@sw-tsdk/plugin-connector","pluginType":"core","aliases":[],"flags":{"action":{"name":"action","type":"option","char":"a","description":"Action name to run","multiple":false},"directory":{"name":"directory","type":"option","char":"d","description":"Root directory of the repository.","multiple":false,"default":"./"},"amend":{"name":"amend","type":"boolean","description":"Merge with existing schema.","allowNo":false},"action-config-path":{"name":"action-config-path","type":"option","description":"Override path to action configuration file. Defaults to /connector/config/actions/<action>.yaml","multiple":false},"input-path":{"name":"input-path","type":"option","description":"Relative path to the output data JSON file, defaults to the task name under the data folder. ie: /data/<taskName>_output.json","multiple":false,"dependsOn":["update-output-schema"]},"help":{"name":"help","type":"boolean","char":"h","description":"Show CLI help.","allowNo":false}},"args":[]},"action:output":{"id":"action:output","description":"Update a connector action.","strict":true,"pluginName":"@sw-tsdk/plugin-connector","pluginAlias":"@sw-tsdk/plugin-connector","pluginType":"core","aliases":[],"flags":{"action":{"name":"action","type":"option","char":"a","description":"Action name to run","multiple":false},"directory":{"name":"directory","type":"option","char":"d","description":"Root directory of the repository.","multiple":false,"default":"./"},"action-config-path":{"name":"action-config-path","type":"option","description":"Override path to action configuration file. Defaults to /connector/config/<action>.yaml","multiple":false},"amend":{"name":"amend","type":"boolean","description":"Merge with existing schema.","allowNo":false},"output-path":{"name":"output-path","type":"option","description":"Relative path to the output data JSON file, defaults to the task name under the data folder. ie: /data/<taskName>_output.json","multiple":false,"dependsOn":["update-output-schema"]},"help":{"name":"help","type":"boolean","char":"h","description":"Show CLI help.","allowNo":false}},"args":[]},"action:run":{"id":"action:run","description":"Runs a connector action. (Defaults to current image version in local repository).","strict":true,"pluginName":"@sw-tsdk/plugin-connector","pluginAlias":"@sw-tsdk/plugin-connector","pluginType":"core","aliases":[],"flags":{"action":{"name":"action","type":"option","char":"a","description":"Action name to run","multiple":false},"directory":{"name":"directory","type":"option","char":"d","description":"Root directory of the repository.","multiple":false,"default":"./"},"input-path":{"name":"input-path","type":"option","description":"File to input data JSON file, defaults to /data/<action>.json","multiple":false},"output-path":{"name":"output-path","type":"option","description":"File to write the outputs to, defaults to /data/<action>_output.json","multiple":false},"error-path":{"name":"error-path","type":"option","description":"File to write the errors to, defaults to /data/<action>_error.json","multiple":false},"asset-path":{"name":"asset-path","type":"option","description":"File to asset data JSON file, defaults to /data/asset.json","multiple":false},"image":{"name":"image","type":"option","char":"i","description":"The connector image to run.","multiple":false,"exclusive":["build","latest"]},"latest":{"name":"latest","type":"boolean","description":"Use the latest release image from quay.","allowNo":false,"exclusive":["build","image"]},"build":{"name":"build","type":"boolean","description":"Builds image and runs it.","allowNo":false,"exclusive":["latest","image"]},"template":{"name":"template","type":"option","description":"connector template","multiple":false,"options":["python_3.7","node_18","python_310_definition"],"default":"python_310_definition"},"compile-override":{"name":"compile-override","type":"option","hidden":true,"multiple":false,"default":"Compile.Dockerfile"},"runner-override":{"name":"runner-override","type":"option","hidden":true,"multiple":false,"default":"Runner.Dockerfile"},"runtime-override":{"name":"runtime-override","type":"option","hidden":true,"multiple":false,"dependsOn":["build"]},"force-rebuild":{"name":"force-rebuild","type":"boolean","char":"f","description":"forces nocache on the image build","allowNo":false,"dependsOn":["build"]},"platform":{"name":"platform","type":"option","hidden":true,"multiple":false,"default":"linux/amd64"},"help":{"name":"help","type":"boolean","char":"h","description":"Show CLI help.","allowNo":false}},"args":[]},"asset:add":{"id":"asset:add","description":"Update a connector action.","strict":true,"pluginName":"@sw-tsdk/plugin-connector","pluginAlias":"@sw-tsdk/plugin-connector","pluginType":"core","aliases":[],"flags":{"directory":{"name":"directory","type":"option","char":"d","description":"Root directory of the repository.","multiple":false,"default":"./"},"scheme":{"name":"scheme","type":"option","char":"s","description":"asset template to scaffold","multiple":false,"options":["custom","apikey","client_credentials","basic","bearer"]},"help":{"name":"help","type":"boolean","char":"h","description":"Show CLI help.","allowNo":false}},"args":[]},"connector:build":{"id":"connector:build","description":"Builds a local docker image of the connector.","strict":true,"pluginName":"@sw-tsdk/plugin-connector","pluginAlias":"@sw-tsdk/plugin-connector","pluginType":"core","aliases":[],"flags":{"template":{"name":"template","type":"option","description":"connector language","required":true,"multiple":false,"options":["python_3.7_swimlane","node_18","python_310_definition"],"default":"python_310_definition"},"compile-override":{"name":"compile-override","type":"option","hidden":true,"multiple":false,"default":"Compile.Dockerfile"},"runner-override":{"name":"runner-override","type":"option","hidden":true,"multiple":false,"default":"Runner.Dockerfile"},"runtime-override":{"name":"runtime-override","type":"option","hidden":true,"multiple":false},"directory":{"name":"directory","type":"option","char":"d","description":"root directory of the repository.","multiple":false,"default":"./"},"save":{"name":"save","type":"boolean","description":"saves docker image as tar in local directory.","allowNo":false},"squash":{"name":"squash","type":"boolean","description":"squashes the docker layers.","hidden":true,"allowNo":false},"force-rebuild":{"name":"force-rebuild","type":"boolean","char":"f","description":"forces nocache on the image build","allowNo":false},"platform":{"name":"platform","type":"option","hidden":true,"multiple":false,"default":"linux/amd64"},"help":{"name":"help","type":"boolean","char":"h","description":"Show CLI help.","allowNo":false}},"args":[]},"connector:create-source":{"id":"connector:create-source","description":"Generates 11x source from 10x","strict":true,"pluginName":"@sw-tsdk/plugin-connector","pluginAlias":"@sw-tsdk/plugin-connector","pluginType":"core","aliases":[],"flags":{"directory":{"name":"directory","type":"option","char":"d","description":"root directory of the repository.","multiple":false,"default":"./"},"help":{"name":"help","type":"boolean","char":"h","description":"Show CLI help.","allowNo":false}},"args":[]},"connector:create":{"id":"connector:create","description":"Scaffold a new connector","strict":true,"pluginName":"@sw-tsdk/plugin-connector","pluginAlias":"@sw-tsdk/plugin-connector","pluginType":"core","aliases":[],"flags":{"directory":{"name":"directory","type":"option","char":"d","description":"root directory for where to store connectors, the connector directory will be generated.","multiple":false,"default":"./"},"template":{"name":"template","type":"option","char":"t","description":"connector template to scaffold","multiple":false,"options":["node_18","python_310_definition","python_3.7_swimlane"],"default":"python_310_definition"},"skip-repo":{"name":"skip-repo","type":"boolean","description":"skips the repository creation process","allowNo":false},"clientId":{"name":"clientId","type":"option","char":"c","description":"client id of the authentication app","hidden":true,"multiple":false,"default":"0d418a5615c458b0b593"},"vendor":{"name":"vendor","type":"option","description":"Vendor (e.g. CrowdStrike)","multiple":false},"product":{"name":"product","type":"option","description":"Product (e.g. Falcon)","multiple":false},"keywords":{"name":"keywords","type":"option","description":"Please enter keyword (Comma-Separated)","multiple":false},"description":{"name":"description","type":"option","description":"Description (e.g. CrowdStrike Host Query API)","multiple":false},"logoPath":{"name":"logoPath","type":"option","description":"URL or absolute path to logo file","multiple":false},"author":{"name":"author","type":"option","description":"Connector Author","multiple":false},"authorEmail":{"name":"authorEmail","type":"option","description":"Connector Author Email","multiple":false},"homepage":{"name":"homepage","type":"option","description":"Connector Author Support URL","multiple":false},"repo-base-template":{"name":"repo-base-template","type":"option","char":"t","description":"github base template override to create repo from.","hidden":true,"multiple":false,"default":"connector-python-definition-template"},"help":{"name":"help","type":"boolean","char":"h","description":"Show CLI help.","allowNo":false}},"args":[]},"connector:logo":{"id":"connector:logo","description":"Update a connector.","strict":true,"pluginName":"@sw-tsdk/plugin-connector","pluginAlias":"@sw-tsdk/plugin-connector","pluginType":"core","aliases":[],"flags":{"directory":{"name":"directory","type":"option","char":"d","description":"root directory of the connector folder.","multiple":false,"default":"."},"path":{"name":"path","type":"option","char":"p","description":"path or URL to product logo in PNG format.","required":true,"multiple":false},"help":{"name":"help","type":"boolean","char":"h","description":"Show CLI help.","allowNo":false}},"args":[]},"connector:save":{"id":"connector:save","description":"Save a docker image locally as .tar.gz","strict":true,"pluginName":"@sw-tsdk/plugin-connector","pluginAlias":"@sw-tsdk/plugin-connector","pluginType":"core","aliases":[],"flags":{"directory":{"name":"directory","type":"option","char":"d","description":"Root directory of the repo.","multiple":false,"default":"."},"output":{"name":"output","type":"option","char":"o","description":"output file to where to store the image.","required":true,"multiple":false},"image":{"name":"image","type":"option","char":"i","description":"image to save.","required":true,"multiple":false},"skip-pull":{"name":"skip-pull","type":"boolean","char":"s","description":"skips pulling the image","allowNo":false},"help":{"name":"help","type":"boolean","char":"h","description":"Show CLI help.","allowNo":false}},"args":[]},"connector:sign":{"id":"connector:sign","description":"Builds a local docker image of the connector.","strict":true,"pluginName":"@sw-tsdk/plugin-connector","pluginAlias":"@sw-tsdk/plugin-connector","pluginType":"core","aliases":[],"flags":{"directory":{"name":"directory","type":"option","char":"d","description":"root directory of the repository.","multiple":false,"default":"./"},"image":{"name":"image","type":"option","description":"image name to sign","required":true,"multiple":false},"signing-password":{"name":"signing-password","type":"option","description":"password used for the private key","multiple":false,"default":""},"save":{"name":"save","type":"boolean","description":"saves docker image as tar in local directory.","allowNo":false},"key-name":{"name":"key-name","type":"option","description":"name used for the key (default: username)","required":true,"multiple":false},"skip-upload":{"name":"skip-upload","type":"boolean","hidden":true,"allowNo":false},"registry":{"name":"registry","type":"option","description":"registry to use for signing","multiple":false,"default":"localhost:50000"},"help":{"name":"help","type":"boolean","char":"h","description":"Show CLI help.","allowNo":false}},"args":[]},"connector:update":{"id":"connector:update","description":"Update a connector.","strict":true,"pluginName":"@sw-tsdk/plugin-connector","pluginAlias":"@sw-tsdk/plugin-connector","pluginType":"core","aliases":[],"flags":{"directory":{"name":"directory","type":"option","char":"d","description":"root directory of the connector folder.","multiple":false,"default":"."},"version":{"name":"version","type":"option","char":"v","description":"new version of the connector.","multiple":false},"manifest-path":{"name":"manifest-path","type":"option","char":"f","description":"connector manifest path relative to directory.","multiple":false,"default":"/connector/connector.yaml"},"help":{"name":"help","type":"boolean","char":"h","description":"Show CLI help.","allowNo":false}},"args":[]},"connector:validate":{"id":"connector:validate","description":"Use to validate an integration","strict":true,"pluginName":"@sw-tsdk/plugin-connector","pluginAlias":"@sw-tsdk/plugin-connector","pluginType":"core","aliases":[],"flags":{"help":{"name":"help","type":"boolean","char":"h","description":"Show CLI help.","allowNo":false},"image":{"name":"image","type":"option","char":"i","description":"image to use","multiple":false},"connector":{"name":"connector","type":"option","char":"c","description":"connector to validate (relative to directory)","required":true,"multiple":false},"signed":{"name":"signed","type":"boolean","description":"validates a signed connector","allowNo":false},"key":{"name":"key","type":"option","description":"public key for verfication","multiple":false,"dependsOn":["signed"],"exclusive":["skip-verification"]},"skip-pull":{"name":"skip-pull","type":"boolean","char":"s","description":"skips pulling the image","allowNo":false},"directory":{"name":"directory","type":"option","char":"d","description":"current directory to mount","multiple":false,"default":"./"}},"args":[]}}}
package/package.json ADDED
@@ -0,0 +1,91 @@
1
+ {
2
+ "author": "Swimlane",
3
+ "bugs": {
4
+ "url": "https://github.com/swimlane/turbine-sdk/issues"
5
+ },
6
+ "dependencies": {
7
+ "@oclif/core": "1.16.4",
8
+ "@sw-tsdk/common": "^0.1.1-next.23+038e7a6",
9
+ "@sw-tsdk/connector": "^0.1.1-next.23+038e7a6",
10
+ "@sw-tsdk/core": "^0.1.1-next.23+038e7a6",
11
+ "@sw-tsdk/docker": "^0.1.1-next.23+038e7a6",
12
+ "@swimlane/connector-interfaces": "1.8.5-rc3",
13
+ "@swimlane/cosign": "1.3.0",
14
+ "@swimlane/docker-reference": "0.0.15",
15
+ "fs-extra": "10.0.1",
16
+ "handlebars": "4.7.7",
17
+ "inquirer": "8.2.2",
18
+ "inquirer-autocomplete-prompt": "2.0.0",
19
+ "js-yaml": "4.1.0",
20
+ "json-schema-typed": "7.0.3",
21
+ "listr2": "4.0.5",
22
+ "noop-stream": "1.0.0",
23
+ "npmlog": "6.0.1",
24
+ "semver": "7.3.6",
25
+ "snake-case": "3.0.4",
26
+ "tslib": "2.3.1"
27
+ },
28
+ "description": "Plugin for managing connectors.",
29
+ "engines": {
30
+ "node": ">=16.0.0"
31
+ },
32
+ "files": [
33
+ "/npm-shrinkwrap.json",
34
+ "/oclif.manifest.json",
35
+ "/yarn.lock",
36
+ "lib"
37
+ ],
38
+ "homepage": "https://github.com/swimlane/turbine-sdk#readme",
39
+ "keywords": [
40
+ "oclif-plugin"
41
+ ],
42
+ "license": "ISC",
43
+ "main": "lib/index.js",
44
+ "name": "@sw-tsdk/plugin-connector",
45
+ "directories": {
46
+ "templates": "./lib/templates",
47
+ "lib": "lib"
48
+ },
49
+ "oclif": {
50
+ "commands": "./lib/commands",
51
+ "bin": "sw-tsdk-connector",
52
+ "devPlugins": [
53
+ "@oclif/plugin-help"
54
+ ],
55
+ "topics": {
56
+ "connector": {
57
+ "description": "Local connector commands"
58
+ },
59
+ "action": {
60
+ "description": "Local connector action commands"
61
+ },
62
+ "asset": {
63
+ "description": "Local connector asset commands"
64
+ },
65
+ "connectors": {
66
+ "description": "Local connectors commands"
67
+ }
68
+ }
69
+ },
70
+ "publishConfig": {
71
+ "access": "public"
72
+ },
73
+ "repository": {
74
+ "type": "git",
75
+ "url": "git+https://github.com/swimlane/turbine-sdk.git"
76
+ },
77
+ "scripts": {
78
+ "build": "rm -rf lib && tsc && yarn copy-files",
79
+ "lint": "eslint . --ext .ts --config .eslintrc",
80
+ "copy-files": "recursive-copy **/templates/ lib/templates",
81
+ "pretest": "tsc -p test --noEmit",
82
+ "postpack": "shx rm -f oclif.manifest.json",
83
+ "prepack": "yarn build && oclif manifest && oclif readme",
84
+ "version": "oclif readme",
85
+ "test": "echo NO TESTS",
86
+ "posttest": "yarn lint",
87
+ "link": "yarn link"
88
+ },
89
+ "version": "0.1.1-next.23+038e7a6",
90
+ "gitHead": "038e7a68d45b2d93f39c7f7b2edce9798019007e"
91
+ }