134 lines
3.8 KiB
JSON
134 lines
3.8 KiB
JSON
{
|
|
"name": "@handsontable/vue",
|
|
"version": "15.1.0",
|
|
"description": "Best Data Grid for Vue with Spreadsheet Look and Feel.",
|
|
"author": "Handsoncode <hello@handsoncode.net> (https://handsoncode.net)",
|
|
"homepage": "https://handsontable.com",
|
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
"main": "./commonjs/vue-handsontable.js",
|
|
"module": "./es/vue-handsontable.mjs",
|
|
"jsdelivr": "./dist/vue-handsontable.min.js",
|
|
"unpkg": "./dist/vue-handsontable.min.js",
|
|
"types": "./index.d.ts",
|
|
"exports": {
|
|
"./dist/vue-handsontable.js": "./dist/vue-handsontable.js",
|
|
"./dist/vue-handsontable.min.js": "./dist/vue-handsontable.min.js",
|
|
".": {
|
|
"types": "./index.d.ts",
|
|
"import": "./es/vue-handsontable.mjs",
|
|
"require": "./commonjs/vue-handsontable.js"
|
|
}
|
|
},
|
|
"keywords": [
|
|
"handsontable",
|
|
"component",
|
|
"data",
|
|
"table",
|
|
"grid",
|
|
"data table",
|
|
"data grid",
|
|
"spreadsheet",
|
|
"sheet",
|
|
"excel",
|
|
"vue",
|
|
"vue.js",
|
|
"vuejs",
|
|
"vue2",
|
|
"vue component",
|
|
"vue grid",
|
|
"wrapper",
|
|
"enterprise",
|
|
"sort",
|
|
"formulas",
|
|
"filter",
|
|
"search",
|
|
"conditional formatting",
|
|
"csv"
|
|
],
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/handsontable/handsontable.git"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/handsontable/handsontable/issues"
|
|
},
|
|
"peerDependencies": {
|
|
"handsontable": ">=15.0.0",
|
|
"vue": "^2.5.0"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/cli": "^7.4.4",
|
|
"@babel/core": "^7.4.5",
|
|
"@babel/plugin-transform-runtime": "^7.4.4",
|
|
"@babel/polyfill": "^7.4.4",
|
|
"@babel/preset-env": "^7.4.5",
|
|
"@babel/preset-typescript": "^7.3.3",
|
|
"@babel/runtime": "^7.4.5",
|
|
"@rollup/plugin-babel": "6.0.4",
|
|
"@rollup/plugin-commonjs": "25.0.7",
|
|
"@rollup/plugin-json": "^6.1.0",
|
|
"@rollup/plugin-node-resolve": "15.2.3",
|
|
"@rollup/plugin-replace": "^5.0.5",
|
|
"@rollup/plugin-terser": "0.4.4",
|
|
"@vue/test-utils": "^1.0.3",
|
|
"cross-env": "^7.0.3",
|
|
"css-loader": "^6.10.0",
|
|
"handsontable": "^15.0.0",
|
|
"jest": "^26.6.3",
|
|
"rimraf": "^3.0.2",
|
|
"rollup": "^4.16.1",
|
|
"rollup-plugin-typescript2": "^0.36.0",
|
|
"rollup-plugin-vue": "^5.1.9",
|
|
"ts-jest": "^26.5.6",
|
|
"typescript": "3.8.2",
|
|
"vue": "~2.6.10",
|
|
"vue-class-component": "^7.1.0",
|
|
"vue-jest": "^4.0.1",
|
|
"vue-router": "^3.0.6",
|
|
"vue-template-compiler": "~2.6.10",
|
|
"vuex": "^3.1.1"
|
|
},
|
|
"scripts": {
|
|
"build": "npm run clean && npm run build:commonjs && npm run build:es && npm run build:umd && npm run build:min",
|
|
"build:commonjs": "cross-env NODE_ENV=cjs rollup -c --bundleConfigAsCjs",
|
|
"build:umd": "cross-env NODE_ENV=umd rollup -c --bundleConfigAsCjs",
|
|
"build:es": "cross-env NODE_ENV=es rollup -c --bundleConfigAsCjs",
|
|
"build:min": "cross-env NODE_ENV=min rollup -c --bundleConfigAsCjs",
|
|
"build:esDts": "cross-env NODE_ENV=esDts rollup -c && rimraf ./buildTemp/",
|
|
"watch:commonjs": "cross-env NODE_ENV=cjs rollup -c --watch",
|
|
"watch:es": "cross-env NODE_ENV=es rollup -c --watch",
|
|
"watch:umd": "cross-env NODE_ENV=umd rollup -c --watch",
|
|
"clean": "rimraf ./es/ && rimraf ./commonjs/ && rimraf ./dist/ && rimraf ./*.d.ts",
|
|
"publish-package": "npm publish",
|
|
"test": "jest"
|
|
},
|
|
"jest": {
|
|
"testURL": "http://localhost/",
|
|
"transform": {
|
|
"^.+\\.ts?$": "babel-jest",
|
|
"^.+\\.js$": "babel-jest",
|
|
".*\\.vue$": "vue-jest"
|
|
},
|
|
"testRegex": "(/test/(.*).(test|spec)).(js?|ts?)$",
|
|
"moduleFileExtensions": [
|
|
"ts",
|
|
"js",
|
|
"json",
|
|
"vue",
|
|
"node"
|
|
],
|
|
"setupFilesAfterEnv": [
|
|
"<rootDir>/test/bootstrap.js"
|
|
],
|
|
"globals": {
|
|
"ts-jest": {
|
|
"tsConfig": "test-tsconfig.json",
|
|
"babelConfig": true
|
|
}
|
|
}
|
|
},
|
|
"dependencies": {
|
|
"@handsontable/vue": "file:"
|
|
}
|
|
}
|