-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
23 lines (23 loc) · 748 Bytes
/
package.json
File metadata and controls
23 lines (23 loc) · 748 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"name": "ts-barrel-import-transformer",
"version": "1.0.0",
"description": "Sample to show how to use barrel import transformer to improve jest performance for barrel imports",
"scripts": {
"test": "npm run build-barrel-transform && jest",
"build-barrel-transform": "tsc transformer/barrelImportTransformerProcessor.ts --outDir transform_cache && node transform_cache/exportFinder.js"
},
"keywords": [
"jest",
"ts-jest",
"performance"
],
"author": "Dinesh S Malik",
"license": "MIT",
"devDependencies": {
"@types/jest": "^29.4.0",
"jest": "^29.5.0",
"ts-jest": "^29.0.5",
"ts-morph": "^14.0.0",
"typescript": "^4.6.4"
}
}