-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
50 lines (50 loc) · 1.1 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
{
"name": "workerloader-jest-transformer",
"version": "0.1.0",
"description": "Jest transformer for Webpack Worker loader",
"main": "index.js",
"scripts": {
"test": "jest --config jest.config.js --no-cache"
},
"repository": {
"type": "git",
"url": "git+https://github.com/astagi/workerloader-jest-transformer.git"
},
"keywords": [
"jest",
"worker",
"utility",
"testing",
"tool",
"transformer",
"tdd"
],
"author": "Andrea Stagi <[email protected]>",
"license": "MIT",
"files": [
"@types/*.d.ts",
"lib/*.js",
"lib/*.ts",
"templates/*.js",
"templates/*.ts",
"utils/*.js",
"index.js"
],
"bugs": {
"url": "https://github.com/astagi/workerloader-jest-transformer/issues"
},
"homepage": "https://github.com/astagi/workerloader-jest-transformer#readme",
"peerDependencies": {
"@babel/core": "^7.11.5"
},
"dependencies": {
"mitt": "^2.1.0"
},
"devDependencies": {
"@babel/preset-env": "^7.11.5",
"babel-jest": "^27.0.2",
"jest": "^27.0.4",
"ts-jest": "^27.0.3",
"typescript": "^4.2.4"
}
}