-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.28 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
{
"name": "svg-in-png",
"version": "1.0.7",
"description": "export SVG into image, its work with recharts and any other image svg",
"main": "lib/index.js",
"types": "lib",
"scripts": {
"build": "tsc -p .",
"coverage": "nyc npm run test -- --coverage",
"test": "jest --runInBand --detectOpenHandles",
"jest": "jest --config ./jest.config.ts",
"test:normal": "jest --coverage --updateSnapshot --forceExit --detectOpenHandles",
"report": "nyc report --reporter=text-lcov > coverage.lcov && codecov"
},
"keywords": [
"SVG",
"svg",
"export",
"converter",
"image",
"png",
"withoutOtherLibary",
"js",
"ts",
"download",
"rechart",
"chart",
"whiteMark",
"WaterMark",
"react"
],
"author": "Jose Marin",
"license": "MIT",
"bugs": {
"url": "https://github.com/josermarinr/svg-export/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/josermarinr/svg-export.git"
},
"homepage": "https://github.com/josermarinr/svg-export#readme",
"devDependencies": {
"@babel/preset-env": "^7.14.2",
"@types/jest": "^26.0.23",
"codecov": "^3.8.2",
"jest": "^27.0.1",
"nyc": "^15.1.0",
"ts-jest": "^27.0.1",
"ts-node": "^9.1.1",
"typescript": "^4.3.2"
}
}