New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

capsule-lint

Package Overview
Dependencies
Maintainers
1
Versions
42
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

capsule-lint - npm Package Compare versions

Comparing version 0.2.1 to 0.2.2

2

bin/cli.js

@@ -8,3 +8,3 @@ #!/usr/bin/env node

const { Command } = require('commander');
const { verify } = require('..');
const { verify } = require('../index.js');

@@ -11,0 +11,0 @@ const program = new Command();

{
"name": "capsule-lint",
"version": "0.2.1",
"version": "0.2.2",
"description": "The official Capsule linting package.",

@@ -5,0 +5,0 @@ "main": "index.umd.js",

@@ -10,3 +10,3 @@ const bodyNoDuplicates = require('./body-no-duplicates');

const imgSrcRequired = require('./img-src-required');
const invalidTagChar = require('./invalid-attribute-char');
const invalidAttributeChar = require('./invalid-attribute-char');
const validPathFormat = require('./valid-path-format');

@@ -25,5 +25,5 @@ const nestedParagraphs = require('./nested-paragraphs');

'img-src-required': imgSrcRequired,
'invalid-attribute-char': invalidTagChar,
'invalid-attribute-char': invalidAttributeChar,
'nested-paragraphs': nestedParagraphs,
'valid-path-format': validPathFormat,
};

@@ -13,4 +13,4 @@ module.exports = {

const matches = name.match(/[^a-zA-Z_-\s="']/g);
const matches = name.match(/[^a-zA-Z:\-1-9]/g);
if(matches) {

@@ -17,0 +17,0 @@ while(matches.length) {

Sorry, the diff of this file is too big to display

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