forked from niklasvh/html2canvas
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
113 lines (113 loc) · 4.19 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
{
"title": "html2canvas",
"name": "@cantoo/html2canvas",
"description": "Screenshots with JavaScript",
"main": "dist/html2canvas.min.js",
"module": "dist/html2canvas.esm.js",
"typings": "dist/types/src/index.d.ts",
"browser": "dist/html2canvas.js",
"version": "1.5.9",
"author": {
"name": "Niklas von Hertzen",
"email": "niklasvh@gmail.com",
"url": "https://hertzen.com"
},
"contributors": [
{
"email": "dev@cantoo.fr",
"name": "Cantoo",
"url": "https://cantoo.fr"
}
],
"engines": {
"node": ">=8.0.0"
},
"repository": {
"type": "git",
"url": "git@github.com:cantoo-scribe/html2canvas.git"
},
"bugs": {
"url": "https://github.com/cantoo-scribe/html2canvas//issues"
},
"devDependencies": {
"@types/express": "^4.17.17",
"@types/glob": "^8.1.0",
"@types/jest": "^29.5.4",
"@types/jest-image-snapshot": "^6.2.0",
"@types/karma": "^6.3.4",
"@types/node": "^16.3.1",
"@types/platform": "^1.3.4",
"@types/promise-polyfill": "^6.0.4",
"@types/serve-index": "^1.9.1",
"@typescript-eslint/eslint-plugin": "^6.5.0",
"@typescript-eslint/parser": "^6.5.0",
"appium-ios-simulator": "^5.2.2",
"base64-arraybuffer": "1.0.2",
"cors": "^2.8.5",
"es6-promise": "^4.2.8",
"eslint": "^8.48.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "5.0.0",
"express": "^4.18.2",
"filenamify-url": "3.0.0",
"glob": "10.3.3",
"html2canvas-proxy": "1.0.1",
"jasmine-core": "^5.1.1",
"jest": "^29.6.4",
"jest-environment-jsdom": "^29.6.4",
"jest-image-snapshot": "^6.2.0",
"jquery": "^3.7.1",
"js-polyfills": "^0.1.43",
"karma": "^6.4.2",
"karma-chrome-launcher": "^3.2.0",
"karma-edge-launcher": "^0.4.2",
"karma-firefox-launcher": "^2.1.2",
"karma-ie-launcher": "^1.0.0",
"karma-jasmine": "^5.1.0",
"karma-junit-reporter": "^2.0.1",
"karma-mocha": "^2.0.1",
"karma-puppeteer-launcher": "^1.0.4",
"karma-safarinative-launcher": "^1.1.0",
"karma-sauce-launcher": "^4.3.6",
"mkdirp": "^3.0.1",
"node-simctl": "^7.3.2",
"platform": "^1.3.6",
"prettier": "^3.0.3",
"puppeteer": "^21.1.1",
"release-it": "^16.1.5",
"rimraf": "^5.0.1",
"serve-index": "^1.9.1",
"terser-webpack-plugin": "^5.3.9",
"ts-jest": "^29.1.1",
"ts-loader": "^9.4.4",
"ts-node": "^10.9.1",
"typescript": "^5.2.2",
"webpack": "^5.88.2",
"webpack-cli": "^5.1.4",
"yargs": "^17.7.2"
},
"scripts": {
"prebuild": "rimraf dist/ && rimraf build/ && mkdirp dist && mkdirp build",
"build": "tsc --module commonjs && webpack --config webpack.config.js && npm run build:create-reftest-list && npm run build:testrunner",
"build:testrunner": "webpack --config tests/webpack.config.js",
"build:reftest-result-list": "ts-node scripts/create-reftest-result-list.ts",
"build:create-reftest-list": "ts-node scripts/create-reftest-list.ts tests/reftests/ignore.txt build/reftests.ts",
"build:reftest-preview": "webpack --config www/webpack.config.js",
"release": "npm run lint && npm run unittest && npm run build && release-it",
"format": "prettier --write \"{src,www/src,tests,scripts}/**/*.ts\"",
"lint": "eslint src/**/*.ts --max-warnings 0",
"test": "npm run lint && npm run unittest && npm run karma",
"unittest": "jest",
"reftests-diff": "mkdirp tmp/snapshots && jest --roots=tests --testMatch=**/reftest-diff.ts",
"karma": "karma start",
"watch": "webpack --config webpack.config.js --watch",
"watch:unittest": "jest --watch src/**/__tests__/*.ts",
"start": "ts-node tests/server --port=8080 --cors=8081"
},
"homepage": "https://html2canvas.hertzen.com",
"license": "MIT",
"dependencies": {
"css-line-break": "^2.1.0",
"text-segmentation": "^1.0.3"
}
}