-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 946 Bytes
/
package.json
File metadata and controls
25 lines (25 loc) · 946 Bytes
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
{
"name": "javascript-table-editor",
"version": "1.0.8",
"description": "Live Demo: <https://movsb.github.io/javascript-table-editor/>.",
"main": "table.js",
"keywords": ["javascript","table","editor"],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "bun run build:all",
"build:esm": "bun build --outfile dist/table.esm.min.js --format esm --minify table.js",
"build:iife": "bun build --outfile dist/table.iife.min.js --format iife --minify table.js",
"build:all": "bun run build:esm && bun run build:iife"
},
"repository": {
"type": "git",
"url": "git+https://github.com/movsb/javascript-table-editor.git"
},
"files": ["dist/table.esm.min.js", "dist/table.iife.min.js"],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/movsb/javascript-table-editor/issues"
},
"homepage": "https://github.com/movsb/javascript-table-editor#readme"
}