UNPKG

cfpathcheck

Version:

Check CFML files for correct paths in cfinclude/cfimport tags

85 lines (84 loc) 2.18 kB
{ "name": "cfpathcheck", "type": "module", "description": "Check CFML files for correct paths in cfinclude/cfimport tags", "version": "11.1.0", "homepage": "https://github.com/timbeadle/cfpathcheck", "author": { "name": "Tim Beadle", "url": "https://github.com/timbeadle" }, "repository": { "type": "git", "url": "git://github.com/timbeadle/cfpathcheck.git" }, "bugs": { "url": "https://github.com/timbeadle/cfpathcheck/issues" }, "license": "MIT", "licenses": [ { "type": "MIT", "url": "https://github.com/timbeadle/cfpathcheck/blob/main/LICENSE-MIT" } ], "keywords": [ "cli", "command line", "cfml", "static analysis" ], "preferGlobal": true, "bin": "./bin/cli.js", "main": "./lib/cfpathcheck.js", "types": "./dist/cfpathcheck.d.ts", "engines": { "node": ">= 20.19.1" }, "scripts": { "build:types": "rimraf ./dist/* && tsc", "test": "run-p test:snyk test:lint test:unit test:engines", "test:ci": "run-p test:lint test:unit test:engines", "test:engines": "ls-engines", "test:coverage": "nyc --reporter=lcov npm run test:unit", "test:lint": "xo {bin,lib,test}/*.js", "test:snyk": "snyk test --dev", "test:unit": "mocha test/*.spec.js", "snyk-protect": "snyk-protect", "prepare": "npm run snyk-protect" }, "dependencies": { "@snyk/protect": "^1.1297.1", "chalk": "^5.4.1", "checkstyle-formatter": "^1.1.0", "crlf": "^1.1.1", "deep-equal": "^2.2.3", "glob": "^11.0.2", "log-symbols": "^7.0.1", "minimist": "^1.2.8" }, "devDependencies": { "@types/chai": "5.2.2", "@types/checkstyle-formatter": "1.0.2", "@types/deep-equal": "1.0.4", "@types/glob": "8.1.0", "@types/minimist": "1.2.5", "@types/mocha": "10.0.10", "@types/node": "^22.15.21", "chai": "5.2.0", "globals": "^16.1.0", "ls-engines": "0.9.3", "mocha": "11.4.0", "npm-run-all2": "8.0.3", "nyc": "17.1.0", "prettier": "3.5.3", "rimraf": "^6.0.1", "typescript": "^5.8.3", "xo": "^0.60.0" }, "snyk": true, "volta": { "node": "20.19.1", "npm": "11.4.1" } }