UNPKG

mustache-jest

Version:

Jest Transformer to compile mustache templates

57 lines (56 loc) 1.32 kB
{ "name": "mustache-jest", "version": "1.1.1", "description": "Jest Transformer to compile mustache templates", "main": "index.js", "scripts": { "test": "jest --no-cache", "test:watch": "jest --no-cache --watch" }, "repository": { "type": "git", "url": "git+https://github.com/mrfunkycold/mustache-jest.git" }, "keywords": [ "Jest", "Mustache", "Hogan", "TypeScript" ], "author": "Jose Medina <josemedina921@gmail.com>", "license": "MIT", "bugs": { "url": "https://github.com/mrfunkycold/mustache-jest/issues" }, "homepage": "https://github.com/mrfunkycold/mustache-jest#readme", "dependencies": { "hogan.js": "3.0.2" }, "devDependencies": { "@types/jest": "^23.3.10", "jest": "^23.6.0", "jest-watch-typeahead": "^0.2.0", "npm-run-all": "^4.1.5", "ts-jest": "^23.10.5", "typescript": "^3.2.2" }, "jest": { "cacheDirectory": ".jest", "transform": { "^.+\\.tsx?$": "ts-jest", "^.+\\.html?$": "<rootDir>/index.js" }, "testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$", "moduleFileExtensions": [ "ts", "tsx", "js", "jsx", "json" ], "watchPlugins": [ "jest-watch-typeahead/filename", "jest-watch-typeahead/testname" ] } }