-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1004 Bytes
/
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
{
"name": "editrrr",
"version": "0.4.0",
"description": "Pimping textarea with editor features.",
"main": "dist/editrrr.cjs.js",
"module": "dist/editrrr.esm.js",
"browser": "dist/editrrr.umd.js",
"repository": {
"type": "git",
"url": "git://github.com/iamso/editrrr.git"
},
"bugs": {
"url": "https://github.com/iamso/editrrr/issues"
},
"author": {
"name": "Steve Ottoz",
"email": "[email protected]"
},
"keywords": [
"textarea",
"editor"
],
"license": "MIT",
"scripts": {
"build": "rollup -c",
"dev": "rollup -c -w"
},
"files": [
"dist",
"!.DS_Store"
],
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/plugin-proposal-function-bind": "^7.11.5",
"@babel/preset-env": "^7.11.5",
"@rollup/plugin-babel": "^5.2.1",
"@rollup/plugin-commonjs": "^15.1.0",
"@rollup/plugin-node-resolve": "^9.0.0",
"rollup": "^2.28.2",
"rollup-plugin-cleanup": "^3.2.1",
"rollup-plugin-terser": "^7.0.2"
}
}