UNPKG

ts-mockery

Version:

Yet another typescript mocking library.

65 lines (64 loc) 1.67 kB
{ "name": "ts-mockery", "version": "1.2.0", "description": "Yet another typescript mocking library.", "main": "dist/index.js", "types": "dist/index.d.ts", "files": [ "dist", "LICENSE", "README" ], "scripts": { "build": "npm run clean && tsc", "clean": "rm -rf dist", "lint": "tslint -c ./tslint.json -p ./tsconfig.json -t stylish", "release": "npm run lint && npm run test && npm run build && standard-version", "test:jasmine": "karma start", "test:jest": "jest", "test": "npm run test:jasmine && npm run test:jest" }, "repository": { "type": "git", "url": "git+https://github.com/ike18t/ts-mockery.git" }, "keywords": [ "Mock", "Testing", "TypeScript" ], "author": "Isaac Datlof <ike18t@gmail.com>", "contributors": [], "license": "MIT", "bugs": { "url": "https://github.com/ike18t/ts-mockery/issues" }, "homepage": "https://github.com/ike18t/ts-mockery#readme", "devDependencies": { "@types/jasmine": "^2.8.8", "@types/jest": "^23.1.1", "@types/node": "^8.10.20", "istanbul": "^0.4.5", "jasmine-ts": "^0.2.1", "jest": "^23.1.0", "karma": "^2.0.3", "karma-chrome-launcher": "^2.2.0", "karma-coverage": "^1.1.2", "karma-jasmine": "^1.1.2", "karma-jasmine-html-reporter": "^0.2.2", "karma-sourcemap-loader": "^0.3.7", "karma-typescript": "^3.0.12", "standard-version": "^4.4.0", "ts-jest": "^22.4.6", "ts-node": "^4.1.0", "tslint": "^5.10.0", "typescript": "^2.8.4" }, "peerDependencies": { "typescript": ">= 2.8" }, "directories": { "lib": "lib" }, "dependencies": {} }