@mixtape/core
Version:
Supercharged fixture library for organizing and generating test data
77 lines (76 loc) • 1.89 kB
JSON
{
"name": "@mixtape/core",
"version": "1.3.0",
"description": "Supercharged fixture library for organizing and generating test data",
"main": "lib/index.js",
"scripts": {
"prebuild": "npm run lint && npm run test",
"build": " tsc -p tsconfig.json",
"test": "jest",
"test:coverage": "jest --coverage",
"test:coveralls": "jest --coverage --coverageReporters=text-lcov | coveralls",
"test:watch": "jest --watchAll",
"publish:patch": "npm run build && npm version patch && npm publish",
"publish:minor": "npm run build && npm version minor && npm publish",
"publish:major": "npm run build && npm version major && npm publish",
"lint": "tslint -c tslint.json 'src/**/*.ts' --fix"
},
"author": "Lasse Legaard",
"license": "MIT",
"dependencies": {
"uuid": "^3.3.2"
},
"devDependencies": {
"@types/jest": "^24.0.17",
"@types/uuid": "^3.4.5",
"babel-jest": "^24.8.0",
"coveralls": "^3.0.6",
"jest": "^24.8.0",
"ts-jest": "^24.0.2",
"tslint": "^5.18.0",
"typescript": "^3.5.3",
"validator": "^11.1.0"
},
"files": [
"/lib",
"LICENSE.md",
"README.md"
],
"keywords": [
"test",
"testing",
"tdd",
"fixture",
"unit",
"integration",
"autofixture",
"factory",
"builder",
"data",
"generator",
"automation",
"typescript",
"javascript"
],
"homepage": "https://github.com/legaard/mixtape#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/legaard/mixtape.git"
},
"bugs": {
"url": "https://github.com/legaard/mixtape/issues"
},
"jest": {
"transform": {
".(ts|tsx)": "ts-jest"
},
"testURL": "http://localhost/",
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"json"
]
}
}