forked from xdan/jodit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 2.75 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
{
"name": "jodit",
"version": "3.2.24",
"description": "Jodit is awesome and usefully wysiwyg editor with filebrowser",
"main": "build/jodit.min.js",
"types": "src/types/index.d.ts",
"scripts": {
"newversion": "npm test && npm version patch --no-git-tag-version && npm run build && npm run newversiongit && npm publish ./",
"newversiongit": "git add --all && git commit -m \"New version $npm_package_version. Read more https://github.com/xdan/jodit/releases/tag/$npm_package_version \" && git tag $npm_package_version && git push --tags origin HEAD:master",
"start": "node server.js",
"build": "rm -f build/* && webpack --mode production --config ./webpack.config.js --progress && npm run build-no-uglify",
"build-no-uglify": "cross-env NODE_ENV=production-no-uflify webpack --progress --mode production",
"test": "karma start --browsers Firefox karma.conf.js --single-run",
"jodit": "cd ../jodit-angular/ && npm run newversion && cd ../jodit-joomla && npm run newversion && cd ../jodit-docs && npm run newversion",
"types": "rm -rf types/* && tsc --project . --declaration --outDir types --emitDeclarationOnly"
},
"repository": {
"type": "git",
"url": "git+https://github.com/xdan/jodit.git"
},
"keywords": [
"wysiwyg",
"editor",
"rich",
"jodit"
],
"author": "Chupurnov <[email protected]> (https://xdsoft.net/)",
"license": "GPL-2.0-or-later",
"bugs": {
"url": "https://github.com/xdan/jodit/issues"
},
"homepage": "https://xdsoft.net/jodit/",
"devDependencies": {
"@types/ace": "^0.0.35",
"@types/es6-promise": "^3.3.0",
"@types/node": "^7.10.0",
"autoprefixer": "^6.7.7",
"awesome-typescript-loader": "^5.2.1",
"chai": "^3.5.0",
"classlist-polyfill": "^1.2.0",
"clean-css-loader": "0.0.4",
"compression": "^1.7.3",
"cross-env": "^3.2.4",
"css-loader": "^1.0.1",
"es6-promise": "^4.2.5",
"express": "^4.16.4",
"file-loader": "^2.0.0",
"karma": "^3.0.0",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^2.2.0",
"karma-firefox-launcher": "^1.1.0",
"karma-ie-launcher": "^1.0.0",
"karma-mocha": "^1.3.0",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^3.0.5",
"less": "^3.8.1",
"less-loader": "^4.1.0",
"mini-css-extract-plugin": "^0.4.4",
"mocha": "^5.2.0",
"optimize-css-assets-webpack-plugin": "^3.2.0",
"postcss-loader": "^2.1.6",
"precss": "^2.0.0",
"raw-loader": "^0.5.1",
"style-loader": "^0.13.2",
"typescript": "^3.1.6",
"uglifyjs-webpack-plugin": "^2.0.1",
"url-loader": "^1.1.2",
"webpack": "^4.24.0",
"webpack-cli": "^3.1.2",
"webpack-dev-middleware": "^3.4.0",
"webpack-dev-server": "^3.1.10",
"webpack-hot-middleware": "^2.24.3"
}
}