forked from canvg/canvg
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
114 lines (114 loc) · 3.2 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "canvg",
"version": "3.0.6",
"description": "JavaScript SVG parser and renderer on Canvas.",
"authors": [
{
"name": "Gabe Lerner",
"email": "[email protected]"
},
{
"name": "Brett Zamir"
},
{
"name": "Dan Green",
"url": "https://twitter.com/dangreen58"
}
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/canvg/canvg"
},
"bugs": {
"url": "https://github.com/canvg/canvg/issues"
},
"main": "lib/index.js",
"module": "lib/index.es.js",
"raw": "lib/index.babel.js",
"umd": "lib/umd.js",
"types": "lib/index.d.ts",
"engines": {
"node": ">=8.0.0"
},
"scripts": {
"lint:js": "eslint .",
"lint:ts": "tslint -p . -t stylish src/**/*.{ts,tsx}",
"lint": "npm run lint:js && npm run lint:ts",
"jest": "cross-env NODE_ENV=test jest -c jest.config.json",
"typecheck": "tsc --noEmit --pretty --skipLibCheck",
"checkSize": "size-limit",
"test": "yarn typecheck && yarn lint && yarn jest && yarn build && yarn checkSize",
"artifacts": "node ./scripts/artifacts.js test/__image_snapshots__",
"build:docs": "./scripts/buildDocs.sh",
"start": "ts-node -P ./tsconfig.dev.json test/common/server.ts",
"start:node": "ts-node -P ./tsconfig.dev.json -T test/node/index.ts",
"build": "cross-env NODE_ENV=production rollup -c",
"cleanPublish": "yarn test && clean-publish",
"coverage": "cat ./coverage/lcov.info | coveralls"
},
"keywords": [
"javascript",
"client",
"browser",
"svg",
"canvas"
],
"dependencies": {
"@babel/runtime-corejs3": "^7.9.6",
"@types/raf": "^3.4.0",
"raf": "^3.4.1",
"rgbcolor": "^1.0.1",
"stackblur-canvas": "^2.0.0",
"svg-pathdata": "^5.0.5"
},
"devDependencies": {
"@babel/cli": "^7.6.4",
"@babel/core": "^7.6.4",
"@babel/node": "^7.6.3",
"@rollup/plugin-babel": "^5.0.0",
"@rollup/plugin-commonjs": "^15.1.0",
"@rollup/plugin-node-resolve": "^9.0.0",
"@rollup/plugin-replace": "^2.3.1",
"@size-limit/preset-small-lib": "^4.4.0",
"@types/jest": "^26.0.14",
"@types/node-fetch": "^2.5.4",
"@types/puppeteer": "^3.0.0",
"@types/xmldom": "^0.1.29",
"archiver": "^5.0.2",
"babel-jest": "^26.0.1",
"babel-preset-trigen": "^4.0.0",
"browserslist-config-trigen": "^1.1.0",
"builtin-modules": "*",
"canvas": "^2.1.0",
"clean-publish": "^1.1.0",
"coveralls": "^3.0.7",
"cross-env": "^7.0.0",
"eslint": "^7.0.0",
"eslint-config-trigen": "^3.4.2",
"http-server": "^0.12.0",
"husky": "^4.0.9",
"jest": "^26.0.1",
"jest-image-snapshot": "^4.0.0",
"lint-staged": "^10.0.2",
"node-fetch": "^2.6.0",
"nodemailer": "^6.3.1",
"puppeteer": "^5.3.1",
"rollup": "^2.10.5",
"rollup-plugin-node-globals": "^1.4.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-tslint": "^0.2.2",
"rollup-plugin-typescript2": "^0.27.0",
"size-limit": "^4.4.0",
"ts-node-dev": "^1.0.0-pre.39",
"tsconfig-paths": "^3.8.0",
"tslint": "^6.0.0",
"tslint-config-trigen": "^3.0.7",
"typedoc": "^0.19.2",
"typescript": "3.9.7",
"xmldom": "^0.3.0"
},
"files": [
"lib"
]
}