This repository has been archived by the owner on Jan 14, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathpackage.json
114 lines (114 loc) · 3.38 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
{
"name": "v2-table",
"version": "3.0.3",
"description": "A simple table component based Vue 2.x",
"author": "dwqs",
"license": "MIT",
"main": "dist/index.js",
"private": false,
"repository": {
"type": "git",
"url": "https://github.com/dwqs/v2-table.git"
},
"bugs": {
"url": "https://github.com/dwqs/v2-table/issues"
},
"homepage": "https://github.com/dwqs/v2-table",
"keywords": [
"vuejs2",
"vue",
"table",
"table-component",
"vue-table"
],
"files": [
"dist",
"README.md",
"package.json"
],
"scripts": {
"prepush": "npm run ilint -q",
"prepublishOnly": "npm run build",
"ilint": "npx eslint src/**/*.js src/**/*.vue",
"fix": "npx eslint --fix src/**/*.js src/**/*.vue",
"commitmsg": "npx commitlint -e",
"dev": "npx cross-env NODE_ENV=development node ./build/dev-server.js",
"test": "npx karma start test/karma.conf.js --single-run",
"build": "rm -rf dist && npx webpack --config ./webpack.build.config.js --hide-modules",
"build:docs": "npx cross-env NODE_ENV=production npx webpack --config ./build/webpack.prod.config.js --hide-modules && mv ./docs/dist/index.html ./docs/"
},
"dependencies": {
"lodash.findindex": "^4.6.0"
},
"peerDependencies": {
"vue": ">= 2.5.0",
"beautify-scrollbar": ">=1.0.5"
},
"devDependencies": {
"@commitlint/cli": "^5.2.8",
"@commitlint/config-angular": "^5.1.1",
"autoprefixer": "^7.1.5",
"babel-core": "^6.26.0",
"babel-eslint": "^8.0.1",
"babel-loader": "^7.1.2",
"babel-plugin-syntax-jsx": "^6.18.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-plugin-transform-vue-jsx": "^3.7.0",
"babel-preset-env": "^1.6.1",
"babel-preset-stage-2": "^6.24.1",
"beautify-scrollbar": "^1.0.8",
"chai": "^4.1.2",
"clean-webpack-plugin": "^0.1.17",
"codecov": "^3.0.0",
"compression-webpack-plugin": "^1.0.1",
"cross-env": "^5.0.5",
"css-loader": "^0.28.9",
"cssnano": "^3.10.0",
"cz-conventional-changelog": "^2.1.0",
"eslint": "^4.8.0",
"eslint-config-vue": "^2.0.2",
"eslint-plugin-vue": "^2.1.0",
"extract-text-webpack-plugin": "^3.0.2",
"github-markdown-css": "^2.10.0",
"html-webpack-plugin": "^2.30.1",
"husky": "^0.14.3",
"karma": "^2.0.0",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^2.2.0",
"karma-coverage": "^1.1.1",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.2.5",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^2.0.9",
"less": "^2.7.2",
"less-loader": "^4.0.5",
"markdown-it": "^8.4.0",
"markdown-it-anchor": "^4.0.0",
"markdown-it-container": "^2.0.0",
"mocha": "^5.0.0",
"open-browser-webpack-plugin": "^0.0.5",
"optimize-css-assets-webpack-plugin": "^3.2.0",
"postcss-loader": "^2.0.6",
"progress-bar-webpack-plugin": "^1.10.0",
"strip-tags": "^0.1.1",
"transliteration": "^1.6.2",
"vue": "^2.5.8",
"vue-loader": "^13.5.0",
"vue-markdown-loader": "^2.3.0",
"vue-style-loader": "^3.0.3",
"vue-template-compiler": "^2.5.8",
"webpack": "^3.10.0",
"webpack-dev-server": "^2.11.1",
"webpack-md5-hash": "^0.0.5",
"webpack-parallel-uglify-plugin": "^1.0.2"
},
"engines": {
"node": ">= 6.0.0",
"npm": ">= 5.2.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}