UNPKG

test-file-generator

Version:

Generates different file types for testing purposes. The content of the files is generated with a random function.

67 lines (66 loc) 1.66 kB
{ "name": "test-file-generator", "version": "1.0.11", "description": "Generates different file types for testing purposes. The content of the files is generated with a random function.", "main": "lib/index.js", "types": "lib/index.ts", "author": "M-G", "license": "MIT", "scripts": { "test": "jest --config jest.config.json", "test-watch": "jest --config jest.config.json --watchAll", "build": "tsc", "format": "prettier --write \"src/**/*.ts\"", "lint": "tslint -p tsconfig.json", "prepare": "npm run build", "prepublishOnly": "npm test && npm run lint", "preversion": "npm run lint", "version": "npm run format && git add -A src", "postversion": "git push && git push --tags" }, "directories": { "test": "test" }, "keywords": [ "File", "generator", "javascript", "typescript", "nodejs", "random", "JPEG", "GIF", "CVS", "TXT" ], "repository": { "type": "git", "url": "git+https://github.com/pacmax2/file-generator.git" }, "bugs": { "url": "https://github.com/pacmax2/file-generator/issues" }, "homepage": "https://github.com/pacmax2/file-generator#readme", "devDependencies": { "@types/jest": "^26.0.15", "@types/omggif": "^1.0.1", "@types/yargs": "^15.0.10", "jest": "^26.6.1", "prettier": "^2.1.2", "ts-jest": "^26.4.3", "tslint": "^6.1.3", "tslint-config-prettier": "^1.18.0", "typescript": "^4.0.5" }, "bin": { "generate": "./lib/index.js" }, "files": [ "lib/**/*" ], "dependencies": { "jimp": "^0.16.1", "omggif": "^1.0.10", "yargs": "^16.1.1" } }