UNPKG

@rohitbakoliya/test-gen

Version:

Quickly generate test cases for stress testing using interactive CLI.

92 lines (91 loc) 2.37 kB
{ "name": "@rohitbakoliya/test-gen", "version": "1.0.1", "description": "Quickly generate test cases for stress testing using interactive CLI.", "main": "bin/index.js", "bin": { "test-gen": "bin/index.js" }, "scripts": { "start": "npm run build && node bin/index.js", "restart": "node bin/index.js", "dev": "nodemon src/index.ts", "build": "tsc -p .", "clean": "rm -rf node_modules bin", "lint": "eslint \"src/**/*.ts\" --fix", "format": "prettier \"src/**/*.ts\" --write", "lf": "npm run lint && npm run format", "test": "jest", "test:watch": "jest --watch" }, "husky": { "hooks": { "pre-commit": "lint-staged" } }, "lint-staged": { "./src/**/*.ts": [ "npm run lf" ] }, "files": [ "bin" ], "keywords": [ "test-generator", "test-gen", "cli", "testing-cli", "testing", "stress-testing", "test-cases", "competitive-programming", "competitive-coding" ], "repository": { "type": "git", "url": "git+https://github.com/rohitbakoliya/test-gen.git" }, "bugs": { "url": "https://github.com/rohitbakoliya/test-gen/issues" }, "homepage": "https://github.com/rohitbakoliya/test-gen#readme", "author": { "name": "Rohit Bakoliya", "email": "bakoliyarohit00@gmail.com", "url": "https://rohitbakoliya.github.io" }, "license": "MIT", "devDependencies": { "@types/inquirer": "^7.3.1", "@types/jest": "^26.0.20", "@types/node": "^14.14.22", "@typescript-eslint/eslint-plugin": "^4.14.0", "@typescript-eslint/parser": "^4.14.0", "eslint": "^7.18.0", "eslint-config-prettier": "^7.2.0", "eslint-config-standard": "^16.0.2", "eslint-plugin-import": "^2.22.1", "eslint-plugin-jest": "^24.1.3", "eslint-plugin-node": "^11.1.0", "eslint-plugin-promise": "^4.2.1", "husky": "^4.3.8", "jest": "^26.6.3", "jest-extended": "^0.11.5", "lint-staged": "^10.5.3", "nodemon": "^2.0.7", "prettier": "^2.2.1", "ts-jest": "^26.4.4", "ts-node": "^9.1.1", "typescript": "^4.1.3" }, "dependencies": { "chalk": "^4.1.0", "inquirer": "^7.3.3", "ora": "^5.3.0", "randexp": "^0.5.3" }, "engines": { "node": ">=10" } }