forked from wangeditor-team/wangEditor-plugin-mention
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
102 lines (102 loc) · 3.18 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
{
"name": "@wangeditor/plugin-mention",
"version": "1.0.0",
"description": "wangEditor mention plugin",
"repository": {
"type": "git",
"url": "git+https://github.com/wangeditor-team/wangEditor-plugin-mention.git"
},
"keywords": [
"wangeditor",
"@",
"mention"
],
"author": "github.com/wangfupeng1988",
"license": "MIT",
"bugs": {
"url": "https://github.com/wangeditor-team/wangEditor-plugin-mention/issues"
},
"homepage": "https://github.com/wangeditor-team/wangEditor-plugin-mention#readme",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/src/index.d.ts",
"scripts": {
"test": "cross-env NODE_OPTIONS=--unhandled-rejections=warn jest --detectOpenHandles --passWithNoTests",
"test-c": "cross-env NODE_OPTIONS=--unhandled-rejections=warn jest --coverage",
"dev": "cross-env NODE_ENV=development webpack serve --config build/webpack.dev.js",
"build": "cross-env NODE_ENV=production webpack --config build/webpack.prod.js",
"build:analyzer": "cross-env NODE_ENV=production_analyzer webpack --config build/webpack.prod.js",
"release": "release-it",
"format": "yarn prettier --write",
"lint": "eslint \"{src,test,cypress,build,example}/**/*.{js,ts}\"",
"lint-fix": "eslint --fix \"{src,test,cypress,build,example}/**/*.{js,ts}\"",
"prettier": "prettier --write --config .prettierrc.js \"{src,test,cypress,build,example}/**/*.{js,ts}\""
},
"lint-staged": {
"*.{ts,tsx,js}": [
"yarn prettier",
"yarn lint",
"yarn test"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"config": {
"commitizen": {
"path": "node_modules/cz-customizable"
}
},
"devDependencies": {
"@babel/core": "^7.13.14",
"@babel/preset-env": "^7.13.12",
"@testing-library/jest-dom": "^5.16.2",
"@types/jest": "^27.4.0",
"@typescript-eslint/eslint-plugin": "^5.12.0",
"@typescript-eslint/parser": "^5.12.0",
"@wangeditor/editor": "^5.0.0",
"autoprefixer": "^10.2.5",
"babel-jest": "^27.3.1",
"babel-loader": "^8.2.2",
"clean-webpack-plugin": "^3.0.0",
"commitlint": "^16.2.1",
"commitlint-config-cz": "^0.13.3",
"cross-env": "^7.0.3",
"crypto": "^1.0.1",
"css-loader": "^5.2.0",
"cz-customizable": "^6.3.0",
"eslint": "^8.9.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"html-webpack-plugin": "^5.3.1",
"husky": "^7.0.4",
"jest": "^27.5.1",
"jest-environment-jsdom": "^27.5.1",
"less": "^4.1.1",
"less-loader": "^8.0.0",
"lint-staged": "^12.3.4",
"postcss-loader": "^5.2.0",
"prettier": "^2.5.1",
"raw-loader": "^4.0.2",
"release-it": "^14.11.6",
"snabbdom": "^3.3.1",
"style-loader": "^2.0.0",
"ts-jest": "^27.0.7",
"ts-loader": "^8.1.0",
"typescript": "^4.2.3",
"url-loader": "^4.1.1",
"webpack": "^5.30.0",
"webpack-bundle-analyzer": "^4.4.0",
"webpack-cli": "^4.6.0",
"webpack-dev-server": "^3.11.2",
"webpack-merge": "^5.7.3"
},
"peerDependencies": {
"@wangeditor/editor": ">=5.0.0",
"snabbdom": "^3.3.1"
},
"dependencies": {}
}