forked from jaredreich/pell
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.08 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
{
"name": "pell",
"description": "pell - the simplest and smallest WYSIWYG text editor for web, with no dependencies",
"author": "Jared Reich",
"version": "1.0.6",
"main": "./dist/pell.min.js",
"scripts": {
"dev": "gulp",
"build": "gulp clean && gulp script && gulp style",
"lint": "./node_modules/.bin/eslint .js ./"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jaredreich/pell.git"
},
"keywords": [
"text editor",
"editor",
"rich text",
"wysiwyg",
"contenteditable"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/jaredreich/pell/issues"
},
"homepage": "https://jaredreich.com/pell",
"devDependencies": {
"gulp": "^4.0.2"
},
"dependencies": {
"@babel/core": "^7.20.5",
"del": "^7.0.0",
"gulp-cssnano": "^2.1.3",
"gulp-rename": "^2.0.0",
"gulp-rollup": "^2.17.0",
"gulp-sass": "^5.1.0",
"gulp-size": "^4.0.1",
"rollup": "^3.7.4",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-uglify": "^6.0.4",
"run-sequence": "^2.2.1",
"sass": "^1.56.2"
}
}