🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
Book a DemoInstallSign in
Socket

@heroku/project-descriptor

Package Overview
Dependencies
Maintainers
236
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@heroku/project-descriptor

Project Descriptor specification and validator

0.0.6
latest
npm
Version published
Weekly downloads
182
-7.61%
Maintainers
236
Weekly downloads
 
Created
Source

project-descriptor

Project Descriptor specification and validation for Salesforce Functions

Usage

import {ProjectDescriptor} from '@heroku/project-descriptor';

const parser = new ProjectDescriptor();

parser.parseFile('project.toml').then((data) => {
  console.dir(data)
});

parser.parseData({
  _: {
    'schema-version': '0.2'
  },
  com: {
    salesforce: {
      'schema-version': '0.1',
      id: 'foo',
      type: 'function'
    }
  }
}).then((data) => {
  console.dir(data)
});

FAQs

Package last updated on 31 Mar 2022

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts