-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.69 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
{
"name": "vue-tidy-table",
"version": "0.0.3",
"description": "Create a HTML table that can be sorted, selected, and post-processed.",
"main": "src/vue-tidy-table.js",
"scripts": {
"build": "babel src -s -D -d dist",
"lint": "eslint --ignore-path .gitignore demo src",
"prepack": "npm run build",
"webpack": "webpack-cli ./demo/index.js --config demo/webpack.config.js --output-path demo/assets",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nuxy/vue-tidy-table.git"
},
"keywords": [
"javascript",
"vue",
"vue-component",
"table-generator",
"dashboard"
],
"bugs": {
"url": "https://github.com/nuxy/vue-tidy-table/issues"
},
"homepage": "https://github.com/nuxy/vue-tidy-table#readme",
"author": "Marc S. Brooks <[email protected]> (https://mbrooks.info)",
"license": "MIT",
"dependencies": {
"tidy-table": "^4.0.10",
"vue": "^3.4.31"
},
"devDependencies": {
"@babel/cli": "^7.24.7",
"@babel/core": "^7.24.7",
"@babel/eslint-parser": "^7.24.7",
"@babel/plugin-proposal-class-properties": "^7.17.12",
"@babel/plugin-proposal-decorators": "^7.24.7",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/preset-env": "^7.24.7",
"@babel/register": "^7.24.6",
"@node-minify/clean-css": "^4.0.5",
"@node-minify/cli": "^6.2.0",
"@node-minify/uglify-js": "^4.0.5",
"babel-loader": "^8.2.5",
"css-loader": "^6.11.0",
"eslint": "^8.57.0",
"mini-css-extract-plugin": "^1.6.2",
"webpack": "^5.92.1",
"webpack-cli": "^5.1.4"
},
"overrides": {
"braces": "3.0.3",
"got": "^12.0.0"
}
}