UNPKG

add-matchers

Version:

Write useful test matchers compatible with Jest and Jasmine.

48 lines (47 loc) 1.39 kB
{ "name": "add-matchers", "description": "Write useful test matchers compatible with Jest and Jasmine.", "version": "0.6.2", "author": "Jamie Mason (https://github.com/JamieMason)", "bugs": "https://github.com/JamieMason/add-matchers/issues", "devDependencies": { "@types/jasmine-v1": "npm:@types/jasmine@1.3.3", "@types/jasmine-v2": "npm:@types/jasmine@2.8.14", "@types/jest": "23.3.12", "@types/node": "10.12.18", "jasmine": "3.3.1", "jasmine-node": "1.16.2", "jest": "23.6.0", "npm-run-all": "4.1.5", "prettier": "1.15.3", "rimraf": "2.6.3", "ts-jest": "23.10.5", "tslint": "5.12.1", "typescript": "3.2.2" }, "files": [ "dist" ], "homepage": "https://github.com/JamieMason/add-matchers", "keywords": [ "BDD", "TDD", "jasmine", "testing" ], "license": "MIT", "main": "dist/index.js", "repository": "JamieMason/add-matchers.git", "scripts": { "build": "tsc --project .", "format": "prettier --write '**/*.md' './src/**/*.ts' './test/**/*.js'", "lint": "tslint --fix --project ./tsconfig.json", "prebuild": "rimraf ./dist", "prelint": "npm run format", "prepack": "npm run build", "test": "run-p 'test:*'", "test:jasmine-v1": "jasmine-node ./test/e2e.spec.js", "test:jasmine-v2": "jasmine JASMINE_CONFIG_PATH=jasmine.json", "test:jest": "jest" } }