postman-eslint
Version:
CLI tool to lint JavaScript pre-request and test scripts in Postman collections using ESLint
52 lines (51 loc) • 1.11 kB
JSON
{
"name": "postman-eslint",
"version": "1.0.3",
"description": "CLI tool to lint JavaScript pre-request and test scripts in Postman collections using ESLint",
"main": "cli.js",
"bin": {
"postman-eslint": "./cli.js"
},
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage"
},
"keywords": [
"postman",
"eslint",
"cli",
"linter",
"postman-collection",
"code-quality",
"testing",
"api-testing"
],
"author": "",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/laughingbiscuit/postman-eslint-cli.git"
},
"bugs": {
"url": "https://github.com/laughingbiscuit/postman-eslint-cli/issues"
},
"homepage": "https://github.com/laughingbiscuit/postman-eslint-cli",
"engines": {
"node": ">=14.0.0"
},
"dependencies": {
"axios": "^1.6.0",
"commander": "^11.1.0",
"eslint": "^9.37.0",
"postman-collection": "^5.2.0"
},
"devDependencies": {
"jest": "^30.2.0"
},
"files": [
"cli.js",
"README.md",
"eslint.config.js"
]
}