forked from samclarke/SCEditor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 1.82 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
{
"name": "sceditor",
"version": "3.0.0",
"description": "A lightweight HTML and BBCode WYSIWYG editor.",
"homepage": "http://www.sceditor.com/",
"bugs": "https://github.com/samclarke/SCEditor/issues",
"license": "MIT",
"author": "Sam Clarke <[email protected]>",
"contributors": [
{
"name": "brunoais"
}
],
"files": [
"emoticons/",
"languages/",
"development/",
"minified/",
"src/",
"CHANGELOG.txt",
"LICENSE.md",
"README.md"
],
"repository": {
"type": "git",
"url": "https://github.com/samclarke/SCEditor.git"
},
"keywords": [
"jquery-plugin",
"WYSIWYG",
"BBCode",
"editor",
"contenteditable",
"jquery",
"ui",
"ecosystem:jquery"
],
"engines": {
"node": ">= 0.10.0"
},
"browserslist": [
"last 4 versions",
"ie 10"
],
"scripts": {
"test": "grunt test",
"build": "grunt build",
"release": "grunt release",
"dev": "node ./tests/dev-server.js"
},
"devDependencies": {
"@lodder/grunt-postcss": "^3.0.0",
"@rollup/plugin-node-resolve": "^11.2.0",
"autoprefixer": "^10.2.4",
"cssnano": "^4.1.10",
"grunt": "~1.3.0",
"grunt-contrib-clean": "^2.0.0",
"grunt-contrib-compress": "^2.0.0",
"grunt-contrib-concat": "~1.0.1",
"grunt-contrib-copy": "^1.0.0",
"grunt-contrib-less": "^3.0.0",
"grunt-contrib-qunit": "^4.0.0",
"grunt-contrib-uglify": "^5.0.0",
"grunt-eslint": "^23.0.0",
"grunt-rollup": "^11.5.0",
"istanbul-lib-coverage": "^3.0.0",
"istanbul-lib-instrument": "^4.0.3",
"istanbul-lib-report": "^3.0.0",
"istanbul-reports": "^3.0.2",
"loader-utils": "^2.0.0",
"rimraf": "^3.0.2",
"time-grunt": "^2.0.0",
"webpack": "^5.24.0",
"webpack-dev-server": "^3.11.2"
},
"dependencies": {
"dompurify": "^2.0.8"
}
}