-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.3 KB
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 1.3 KB
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
{
"name": "frostui-editable",
"version": "2.0.1",
"description": "FrostUI-Editable is a free, open-source Editable component for Javascript.",
"keywords": [
"ui",
"component",
"editable",
"front-end",
"web"
],
"homepage": "https://github.com/elusivecodes/FrostUI-Editable",
"bugs": {
"url": "https://github.com/elusivecodes/FrostUI-Editable/issues",
"email": "elusivecodes@gmail.com"
},
"main": "src/index.js",
"type": "module",
"files": [
"dist",
"LICENSE",
"README.md",
"src"
],
"scripts": {
"build": "npm run js-compile && npm run js-minify",
"js-compile": "rollup --config",
"js-lint": "eslint",
"js-minify": "terser --compress passes=2 --mangle --source-map \"content=dist/frost-ui-editable.js.map\" --output dist/frost-ui-editable.min.js dist/frost-ui-editable.js"
},
"repository": {
"type": "git",
"url": "https://github.com/elusivecodes/FrostUI-Editable.git"
},
"author": "Elusive",
"license": "MIT",
"devDependencies": {
"@fr0st/eslint-config": "^1.0.3",
"@rollup/plugin-node-resolve": "^16.0.1",
"eslint": "^9.26.0",
"rollup": "^4.40.2",
"terser": "^5.39.1"
}
}