Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@decentm/concourse-ts-resource-apache-directory-index

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@decentm/concourse-ts-resource-apache-directory-index - npm Package Compare versions

Comparing version 0.1.0 to 0.2.0

39

package.json
{
"name": "@decentm/concourse-ts-resource-apache-directory-index",
"version": "0.1.0",
"version": "0.2.0",
"homepage": "https://github.com/DecentM/concourse-ts/tree/main/packages/concourse-ts-resource-apache-directory-index",
"repository": "https://github.com/DecentM/concourse-ts.git",
"license": "MIT",
"type": "commonjs",
"license": "MIT",
"scripts": {
"build": "nx build",
"test": "c8 --reporter=lcov --reporter=text ava",
"t": "yarn test"
"build": "nx build"
},
"ava": {
"extensions": {
"ts": "module"
},
"nodeArguments": [
"--no-warnings",
"--loader=ts-node/esm/transpile-only"
],
"require": [
"tsconfig-paths/register"
]
},
"peerDependencies": {
"@decentm/concourse-ts": "0.x"
"@decentm/concourse-ts": "0.x",
"@decentm/concourse-ts-resource-registry-image": "0.x"
},
"devDependencies": {
"@types/node": "^18.11.18",
"ava": "^5.1.1",
"c8": "^7.12.0",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.1.2",
"typescript": "^4.9.4"
},
"main": "./src/index.js",
"types": "./src/index.d.ts"
"exports": {
".": {
"require": "./src/index.js"
}
}
}

@@ -1,2 +0,33 @@

export * from './resource-type';
export * from './resource';
import * as ConcourseTs from '@decentm/concourse-ts';
import * as RegistryImage from '@decentm/concourse-ts-resource-registry-image';
/**
* https://github.com/cloudlena/apache-directory-index-resource
*/
export type Source = {
/**
* The path of where the your versioned folders reside
*/
directory: string;
/**
* Describes the pattern of how the folders are named (use $VERSION as a
* placeholder for the version)
*/
folder_pattern: string;
/**
* Describes the pattern of where the file resides and how it's named (use
* $VERSION as a placeholder for the version)
*/
file_pattern: string;
/**
* If true then the downloaded file will be expanded into the "expanded"
* directory
*/
expand?: boolean;
};
export type PutParams = never;
/**
* No get params, pass an empty object
*/
export type GetParams = Record<string, never>;
export type Resource = ConcourseTs.Resource<Source, PutParams, GetParams>;
export type ResourceType = ConcourseTs.ResourceType<'registry-image', RegistryImage.Source<'mastertinner/apache-directory-index-resource'>>;
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
const tslib_1 = require("tslib");
tslib_1.__exportStar(require("./resource-type"), exports);
tslib_1.__exportStar(require("./resource"), exports);
//# sourceMappingURL=index.js.map

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc