@secretlint/messages-to-markdown
Advanced tools
Comparing version 6.2.4 to 7.0.0-beta.64
#!/usr/bin/env node | ||
require("ts-node").register(); | ||
const output = require("../lib/cli").run(); | ||
import { register } from "ts-node"; | ||
import { run } from "../module/cli"; | ||
register(); | ||
const output = run(); | ||
console.log(output); |
133
package.json
{ | ||
"name": "@secretlint/messages-to-markdown", | ||
"version": "6.2.4", | ||
"description": "Create Markdown text from rule's messages(ids)", | ||
"keywords": [ | ||
"secretlint" | ||
], | ||
"homepage": "https://github.com/secretlint/secretlint/tree/master/packages/@secretlint/messages-to-markdown/", | ||
"bugs": { | ||
"url": "https://github.com/secretlint/secretlint/issues" | ||
"name": "@secretlint/messages-to-markdown", | ||
"version": "7.0.0-beta.64+e3cb33d1", | ||
"description": "Create Markdown text from rule's messages(ids)", | ||
"keywords": [ | ||
"secretlint" | ||
], | ||
"homepage": "https://github.com/secretlint/secretlint/tree/master/packages/@secretlint/messages-to-markdown/", | ||
"bugs": { | ||
"url": "https://github.com/secretlint/secretlint/issues" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/secretlint/secretlint.git" | ||
}, | ||
"license": "MIT", | ||
"author": "azu", | ||
"type": "module", | ||
"exports": { | ||
".": { | ||
"import": { | ||
"types": "./module/index.d.ts", | ||
"default": "./module/index.js" | ||
}, | ||
"default": "./module/index.js" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/secretlint/secretlint.git" | ||
}, | ||
"license": "MIT", | ||
"author": "azu", | ||
"main": "lib/index.js", | ||
"types": "lib/index.d.ts", | ||
"bin": "./bin/cmd.js", | ||
"directories": { | ||
"lib": "lib", | ||
"test": "test" | ||
}, | ||
"files": [ | ||
"bin/", | ||
"lib/", | ||
"src/" | ||
], | ||
"scripts": { | ||
"build": "tsc -p .", | ||
"clean": "rimraf lib/", | ||
"prettier": "prettier --write \"**/*.{js,jsx,ts,tsx,css}\"", | ||
"prepublish": "npm run --if-present build", | ||
"watch": "tsc -p . --watch" | ||
}, | ||
"prettier": { | ||
"printWidth": 120, | ||
"singleQuote": false, | ||
"tabWidth": 4 | ||
}, | ||
"dependencies": { | ||
"@secretlint/types": "^6.2.4", | ||
"meow": "^6.1.1" | ||
}, | ||
"devDependencies": { | ||
"@types/mocha": "^10.0.1", | ||
"@types/node": "^18.16.18", | ||
"mocha": "^10.2.0", | ||
"prettier": "^2.8.1", | ||
"rimraf": "^3.0.2", | ||
"ts-node": "^10.9.1", | ||
"ts-node-test-register": "^10.0.0", | ||
"typescript": "^4.9.4" | ||
}, | ||
"engines": { | ||
"node": "^14.13.1 || >=16.0.0" | ||
}, | ||
"publishConfig": { | ||
"access": "public" | ||
}, | ||
"gitHead": "0b3c044ebe7db12d9e1e1dea53369ba050483a4b" | ||
"./package.json": "./package.json" | ||
}, | ||
"main": "./module/index.js", | ||
"types": "./module/index.d.ts", | ||
"bin": "./bin/cmd.js", | ||
"directories": { | ||
"lib": "lib", | ||
"test": "test" | ||
}, | ||
"files": [ | ||
"bin/", | ||
"module/", | ||
"src/" | ||
], | ||
"scripts": { | ||
"build": "tsc --build", | ||
"clean": "tsc --build --clean", | ||
"prepublishOnly": "npm run clean && npm run build", | ||
"prettier": "prettier --write \"**/*.{js,jsx,ts,tsx,css}\"", | ||
"prepublish": "npm run --if-present build", | ||
"test": "mocha", | ||
"watch": "tsc --build --watch" | ||
}, | ||
"prettier": { | ||
"printWidth": 120, | ||
"singleQuote": false, | ||
"tabWidth": 4 | ||
}, | ||
"dependencies": { | ||
"@secretlint/types": "^7.0.0-beta.64+e3cb33d1", | ||
"meow": "^6.1.1" | ||
}, | ||
"devDependencies": { | ||
"@types/mocha": "^10.0.1", | ||
"@types/node": "^20.3.3", | ||
"mocha": "^10.2.0", | ||
"prettier": "^2.8.1", | ||
"rimraf": "^3.0.2", | ||
"ts-node": "^10.9.1", | ||
"typescript": "^5.1.6" | ||
}, | ||
"packageManager": "yarn@1.22.19", | ||
"engines": { | ||
"node": "^14.13.1 || >=16.0.0" | ||
}, | ||
"publishConfig": { | ||
"access": "public" | ||
}, | ||
"gitHead": "e3cb33d11295d44ed17cf5129294bd09ce70c792" | ||
} |
import meow from "meow"; | ||
import { messagesToMarkdown } from "./index"; | ||
import path from "path"; | ||
import { messagesToMarkdown } from "./index.js"; | ||
import path from "node:path"; | ||
@@ -5,0 +5,0 @@ export const cli = meow( |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Manifest confusion
Supply chain riskThis package has inconsistent metadata. This could be malicious or caused by an error when publishing the package.
Found 1 instance in 1 package
Dynamic require
Supply chain riskDynamic require can indicate the package is performing dangerous or unsafe dynamic code execution.
Found 1 instance in 1 package
No v1
QualityPackage is not semver >=1. This means it is not stable and does not support ^ ranges.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Dynamic require
Supply chain riskDynamic require can indicate the package is performing dangerous or unsafe dynamic code execution.
Found 1 instance in 1 package
10511
7
14
Yes
137
1
1
+ Added@secretlint/types@7.2.0(transitive)
- Removed@secretlint/types@6.2.4(transitive)