forked from summernote/summernote
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
106 lines (106 loc) · 3.37 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
{
"name": "summernote",
"description": "Super simple WYSIWYG editor",
"version": "0.8.18",
"license": "MIT",
"keywords": [
"editor",
"WYSIWYG"
],
"repository": {
"type": "git",
"url": "https://github.com/summernote/summernote.git"
},
"author": {
"name": "hackerwins",
"email": "<[email protected]>"
},
"main": "dist/summernote.js",
"scripts": {
"dev": "eslint config && webpack serve --config=./config/webpack.config.dev.js --open --progress",
"prebuild": "node ./config/build-fonts.js",
"build": "webpack --node-env production --mode=production --config=./config/webpack.config.production.js --progress",
"lint": "eslint src/js plugin lang test config",
"test": "karma start karma.conf.js --single-run",
"test:grep": "karma run karma.conf.js -- --grep",
"test:watch": "karma start karma.conf.js",
"test:ci": "karma start karma.ci.conf.js --single-run",
"test:sauce": "karma start karma.saucelabs.conf.js --single-run",
"test:debug": "karma start karma.debug.conf.js",
"postinstall": "husky install",
"prepublishOnly": "pinst --disable",
"postpublish": "pinst --enable"
},
"husky": {
"hooks": {
"pre-commit": "yarn lint",
"pre-push": "yarn lint && yarn run test"
}
},
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/eslint-parser": "^7.12.16",
"@babel/plugin-external-helpers": "^7.8.3",
"@babel/preset-env": "^7.9.5",
"@popperjs/core": "^2.9.2",
"autoprefixer": "^10.2.4",
"babel-loader": "^8.1.0",
"babel-plugin-module-resolver": "^4.0.0",
"bootstrap": "^5.0.1",
"chai": "^4.2.0",
"chai-spies": "^1.0.0",
"chromedriver": "^91.0.1",
"clean-webpack-plugin": "^4.0.0-alpha.0",
"concurrently": "^6.2.0",
"copy-webpack-plugin": "^9.0.0",
"css-loader": "^5.0.2",
"css-minimizer-webpack-plugin": "^3.0.1",
"cssnano": "^5.0.6",
"eslint": "^7.19.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-chai-friendly": "^0.7.1",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-webpack-plugin": "^2.5.0",
"file-loader": "^6.0.0",
"html-loader": "^2.1.2",
"html-webpack-plugin": "^5.3.2",
"husky": "^6.0.0",
"jquery": "^3.5.0",
"karma": "^6.1.0",
"karma-chrome-launcher": "^3.1.0",
"karma-coverage": "^2.0.2",
"karma-coveralls": "^2.1.0",
"karma-detect-browsers": "^2.3.3",
"karma-firefox-launcher": "^2.1.0",
"karma-ie-launcher": "^1.0.0",
"karma-mocha": "^2.0.0",
"karma-opera-launcher": "^1.0.0",
"karma-safari-launcher": "^1.0.0",
"karma-sauce-launcher": "^4.3.6",
"karma-webpack": "^5.0.0",
"less": "^4.1.1",
"less-loader": "^10.0.0",
"mini-css-extract-plugin": "^1.3.6",
"mocha": "^9.0.1",
"pinst": "^2.1.4",
"postcss": "^8.2.6",
"postcss-escape-generated-content-string": "^3.0.0",
"postcss-loader": "^6.1.0",
"sass": "^1.26.3",
"sass-loader": "^12.1.0",
"serve-static": "^1.14.1",
"string-replace-loader": "^3.0.1",
"style-loader": "^2.0.0",
"terser-webpack-plugin": "^5.1.1",
"uglify-js": "^3.9.1",
"url-loader": "^4.1.0",
"webfont": "^11.1.1",
"webpack": "^5.40.0",
"webpack-bundle-analyzer": "^4.4.0",
"webpack-cli": "^4.5.0",
"webpack-dev-server": "^3.11.2",
"zip-webpack-plugin": "^4.0.1"
}
}