This repository has been archived by the owner on Nov 24, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 128
/
package.json
123 lines (123 loc) · 3.55 KB
/
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
{
"name": "@handsontable/vue",
"version": "5.1.0",
"description": "Best Data Grid for Vue with Spreadsheet Look and Feel.",
"author": "Handsoncode <[email protected]> (https://handsoncode.net)",
"homepage": "https://handsontable.com",
"license": "MIT",
"main": "./commonjs/vue-handsontable.js",
"module": "./es/vue-handsontable.js",
"jsdelivr": "./dist/vue-handsontable.min.js",
"unpkg": "./dist/vue-handsontable.min.js",
"types": "./index.d.ts",
"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/vue-handsontable-official.git"
},
"bugs": {
"url": "https://github.com/handsontable/vue-handsontable-official/issues"
},
"peerDependencies": {
"handsontable": ">=8.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",
"@types/jest": "^24.0.14",
"@vue/test-utils": "^1.0.3",
"babel-core": "^7.0.0-bridge.0",
"cpy-cli": "^3.1.1",
"cross-env": "^5.2.0",
"css-loader": "^3.0.0",
"del-cli": "^3.0.1",
"handsontable": "^8.0.0",
"jest": "^24.8.0",
"rollup": "^1.15.4",
"rollup-plugin-babel": "^4.3.2",
"rollup-plugin-cleanup": "^3.1.1",
"rollup-plugin-commonjs": "^10.0.0",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-node-resolve": "^5.0.2",
"rollup-plugin-replace": "^2.2.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript": "^1.0.1",
"rollup-plugin-typescript2": "^0.21.1",
"rollup-plugin-vue": "^5.0.0",
"typescript": "^3.7.3",
"vue": "^2.6.10",
"vue-class-component": "^7.1.0",
"vue-jest": "^3.0.4",
"vue-router": "^3.0.6",
"vue-template-compiler": "^2.6.10",
"vuex": "^3.1.1"
},
"scripts": {
"build": "npm run delete-build && 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",
"build:umd": "cross-env NODE_ENV=umd rollup -c",
"build:es": "cross-env NODE_ENV=es rollup -c",
"build:min": "cross-env NODE_ENV=min rollup -c",
"build:esDts": "cross-env NODE_ENV=esDts rollup -c && del-cli ./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",
"delete-build": "del-cli ./es/ && del-cli ./commonjs/ && del-cli ./dist/ && del-cli ./*.d.ts",
"publish-build": "npm publish",
"publish-all": "npm run build && npm run publish-build && npm run delete-build",
"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"
],
"globals": {
"ts-jest": {
"tsConfig": "test-tsconfig.json",
"babelConfig": true
}
}
}
}