This repository was archived by the owner on Sep 18, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.29 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.29 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
{
"name": "@infinite-table/vue",
"version": "1.0.0-beta.4",
"description": "A high performace, editable data table of unlimited length",
"private": false,
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/tim-lyon/infinite-table"
},
"main": "dist/infinite-table.ssr.js",
"module": "dist/infinite-table.esm.js",
"unpkg": "dist/infinite-table.min.js",
"files": [
"dist/*",
"src/**/*.vue"
],
"scripts": {
"build": "cross-env NODE_ENV=production rollup --config build/rollup.config.js",
"build:ssr": "cross-env NODE_ENV=production rollup --config build/rollup.config.js --format cjs",
"build:es": "cross-env NODE_ENV=production rollup --config build/rollup.config.js --format es",
"build:unpkg": "cross-env NODE_ENV=production rollup --config build/rollup.config.js --format iife"
},
"dependencies": {},
"devDependencies": {
"@rollup/plugin-alias": "^2.2.0",
"@rollup/plugin-buble": "^0.20.0",
"@rollup/plugin-replace": "^2.3.3",
"cross-env": "^6.0.3",
"minimist": "^1.2.5",
"rollup": "^1.32.1",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-terser": "^5.3.1",
"rollup-plugin-vue": "5.1.1",
"vue": "^2.6.12",
"vue-template-compiler": "^2.6.12"
},
"engines": {
"node": ">=8"
}
}