This repository has been archived by the owner on Oct 25, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
65 lines (65 loc) · 1.88 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
{
"name": "@pangaeatech/tinymce-paste-from-word-plugin",
"version": "1.0.0",
"description": "TinyMCE 6.x Plugin to add support for pasting from Microsoft Word documents",
"author": "Pangaea Information Technologies, Ltd.",
"license": "LGPL-2.1",
"main": "index.js",
"homepage": "https://pangaeatech.github.io/tinymce-paste-from-word-plugin/",
"repository": {
"type": "git",
"url": "https://github.com/pangaeatech/tinymce-paste-from-word-plugin"
},
"keywords": [
"tinymce",
"Microsoft",
"Word",
"paste",
"plugin"
],
"bugs": {
"url": "https://github.com/pangaeatech/tinymce-paste-from-word-plugin/issues"
},
"engines": {
"node": ">=16.0.0",
"npm": ">=8.0.0"
},
"scripts": {
"build": "webpack build --mode production --config webpack.config.js",
"build-lib": "webpack build --mode production --config webpack-lib.config.js",
"lint": "eslint src --ext .ts",
"test": "jest --watch",
"coverage": "jest --coverage",
"format:check": "prettier --check .",
"format:fix": "prettier --write ."
},
"peerDependencies": {
"tinymce": "6.8.5"
},
"devDependencies": {
"@babel/core": "7.25.2",
"@babel/preset-env": "7.25.3",
"@babel/preset-typescript": "7.24.7",
"@jest/globals": "29.7.0",
"@types/jest": "29.5.12",
"@types/node": "20.16.1",
"@types/tinymce": "4.6.9",
"@typescript-eslint/eslint-plugin": "8.2.0",
"@typescript-eslint/parser": "8.2.0",
"eslint": "8.57.0",
"eslint-config-prettier": "9.1.0",
"eslint-config-standard": "17.1.0",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-n": "16.6.2",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"prettier": "3.3.3",
"ts-jest": "29.2.4",
"ts-loader": "9.5.1",
"ts-node": "10.9.2",
"tslib": "2.6.3",
"typescript": "5.5.4",
"webpack": "5.93.0",
"webpack-cli": "5.1.4"
}
}