-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
56 lines (56 loc) · 1.29 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"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 <[email protected]>",
"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"
]
}
}