-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
68 lines (68 loc) · 1.55 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
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "typescript-snapshots-plugin",
"version": "1.7.0",
"description": "Snapshots language service support for Typescript",
"main": "out/index.js",
"scripts": {
"test": "jest",
"build": "tsc",
"build:watch": "tsc -w",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/asvetliakov/typescript-snapshots-plugin.git"
},
"keywords": [
"Jest",
"snapshots",
"Typescript",
"plugin"
],
"author": "Alexey Svetliakov <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/asvetliakov/typescript-snapshots-plugin/issues"
},
"homepage": "https://github.com/asvetliakov/typescript-snapshots-plugin#readme",
"devDependencies": {
"@types/jest": "^23.3.5",
"@types/mock-fs": "^3.6.30",
"@types/node": "^10.11.7",
"jest": "^23.6.0",
"mock-fs": "^4.7.0",
"ts-jest": "^23.10.4",
"typescript": "^3.1.3",
"typescript-snapshots-plugin": "^1.5.2"
},
"jest": {
"testEnvironment": "node",
"resetMocks": true,
"transform": {
"\\.(ts|tsx)": "ts-jest"
},
"testRegex": "(/__tests__/.*|.*\\.[Ff]?[Ss]pec)\\.(ts|tsx|js)$",
"testPathIgnorePatterns": [
"/fixtures/",
"/testsource/"
],
"moduleFileExtensions": [
"js",
"jsx",
"ts",
"tsx"
],
"roots": [
"<rootDir>/src"
],
"globals": {
"ts-jest": {
"tsConfig": {
"sourceMap": false,
"inlineSourceMap": true
}
}
}
},
"dependencies": {}
}