forked from liferay/alloy-editor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
94 lines (94 loc) · 3.22 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
{
"name": "alloyeditor",
"version": "2.0.0-alpha.5",
"description": "AlloyEditor, a modern WYSIWYG editor, build on top of CKEditor",
"devDependencies": {
"babel-core": "^6.26.0",
"babel-eslint": "10.0.1",
"babel-loader": "^7.1.4",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"bourbon": "https://github.com/thoughtbot/bourbon.git#v4.2.6",
"chai": "^3.5.0",
"del": "^3.0.0",
"eslint": "5.12.1",
"eslint-config-liferay": "2.0.18",
"eslint-config-prettier": "3.6.0",
"eslint-plugin-babel": "5.3.0",
"eslint-plugin-no-for-of-loops": "1.0.0",
"eslint-plugin-react": "7.12.4",
"event-stream": "3.3.1",
"gulp": "4.0.0",
"gulp-concat": "^2.6.1",
"gulp-cssnano": "^2.1.3",
"gulp-rename": "^1.2.2",
"gulp-sass": "^4.0.1",
"karma": "3.1.4",
"karma-babel-preprocessor": "6.0.1",
"karma-chai": "0.1.0",
"karma-chrome-launcher": "2.0.0",
"karma-coverage": "1.1.2",
"karma-fixture": "0.2.5",
"karma-html2js-preprocessor": "1.1.0",
"karma-junit-reporter": "1.2.0",
"karma-mocha": "1.3.0",
"karma-sauce-launcher": "2.0.2",
"karma-sinon": "1.0.4",
"karma-verbose-reporter": "0.0.6",
"karma-webpack": "4.0.0-rc.6",
"mocha": "5.2.0",
"parallel-webpack": "2.3.0",
"prettier": "1.15.3",
"sinon": "1.15.4",
"terser-webpack-plugin": "^1.2.1",
"walk": "^2.3.9",
"webpack": "^4.29.0",
"webpack-cli": "^3.2.1",
"webpack-dev-server": "^3.1.14",
"webpack-merge": "^4.2.1",
"yargs": "6.6.0"
},
"main": "dist/alloy-editor/alloy-editor-no-react.js",
"files": [
"dist/**/*"
],
"scripts": {
"build:assets": "gulp --gulpfile scripts/build/gulp/gulpfile.js build:assets",
"build": "gulp --gulpfile scripts/build/gulp/gulpfile.js --release",
"checkFormat": "prettier --list-different -- '*.js' '{scripts,src,test}/**/*.{js,jsx}'",
"dev": "gulp --gulpfile scripts/build/gulp/gulpfile.js",
"format": "prettier --write -- '*.js' '{scripts,src,test}/**/*.{js,jsx}'",
"format:changed": "git ls-files -mz *.js -- 'scripts/*.js' 'src/*.js' 'src/*.jsx' 'test/*.js' 'test/*.jsx' | xargs -0 prettier --write --",
"lint": "eslint 'src/**/*.{js,jsx}'",
"lint:changed": "git ls-files -mz 'src/*.js' 'src/*.jsx' | xargs -0 eslint",
"lint:fix": "eslint --fix 'src/**/*.{js,jsx}'",
"lint:quiet": "eslint --quiet 'src/**/*.{js,jsx}'",
"prettier": "prettier --write -- '*.js' '{scripts,src,test}/**/*.{js,jsx}'",
"prepublishOnly": "npm run checkFormat && npm run test",
"start": "webpack-dev-server --config webpack.dev.js",
"test": "karma start karma.js",
"testSaucelabs": "karma start karma-saucelabs.js"
},
"repository": {
"type": "git",
"url": "https://github.com/liferay/alloy-editor.git"
},
"keywords": [
"editor",
"wysiwyg"
],
"author": "Iliyan Peychev",
"license": "LGPL-3.0",
"bugs": {
"url": "https://github.com/liferay/alloy-editor/issues"
},
"homepage": "http://alloyeditor.com",
"dependencies": {
"clay-css": "2.5.1",
"prop-types": "^15.6.2",
"react": "16.8.1",
"react-dom": "16.8.1"
}
}