forked from jaredreich/pell
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.02 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
{
"name": "pell",
"description": "pell - the simplest and smallest WYSIWYG text editor for web, with no dependencies",
"author": "Jared Reich",
"version": "2.0.0",
"main": "index.js",
"files": [
"index.js",
"dist",
"src"
],
"scripts": {
"build": "rollup -c && terser dist/pell.js -c -m -o dist/pell.min.js",
"dev": "nodemon --watch index.js --watch src -x \"npm run build\"",
"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": {
"@babel/core": "7.4.0",
"@babel/preset-env": "7.4.2",
"eslint-config-jared": "1.6.1",
"nodemon": "1.18.10",
"rollup": "1.7.4",
"rollup-plugin-babel": "4.3.2",
"terser": "3.17.0"
}
}