forked from Em-Ant/jest-transformer-svg
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
44 lines (44 loc) · 1.05 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
{
"name": "jest-transformer-svg",
"version": "1.0.1",
"description": "a jest transformer for testing with svg files in react",
"main": "lib/index.js",
"files": [
"lib/**/*"
],
"homepage": "https://github.com/Em-Ant/jest-transformer-svg.git#readme",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]:Em-Ant/jest-transformer-svg.git"
},
"bugs": {
"url": "https://github.com/Em-Ant/jest-transformer-svg.git/issues"
},
"scripts": {
"test": "tsc --outDir ./tmp --declaration false && jest --no-cache",
"build": "tsc",
"prepare": "npm run test && npm run build"
},
"keywords": [
"test",
"jest",
"svg",
"react",
"transformer"
],
"peerDependencies": {
"jest": "^27.0.6",
"react": "^17.0.2"
},
"author": "Em-Ant",
"license": "MIT",
"devDependencies": {
"@babel/preset-env": "^7.14.7",
"@babel/preset-react": "^7.14.5",
"babel-jest": "^27.0.6",
"jest": "^27.0.6",
"react": "^17.0.2",
"react-test-renderer": "^17.0.2",
"typescript": "^4.3.5"
}
}