-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
104 lines (104 loc) · 3.16 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
{
"name": "tm-flextable",
"version": "1.2.17",
"description": "Using div to implement flexible、high performance table",
"main": "dist/index.js",
"typings": "types/index.d.ts",
"scripts": {
"dev": "cross-env NODE_ENV=development webpack-dev-server --content-base test/ --open --inline --hot --compress --history-api-fallback --port 8086 --config build/webpack.dev.config.js",
"demo": "cross-env NODE_ENV=production webpack --config build/webpack.demo.config.js",
"dist": "cross-env NODE_ENV=production webpack --config build/webpack.dist.config.js",
"test": "cross-env BABEL_ENV=test karma start test/unit/karma.conf.js --single-run",
"coverage": "cross-env BABEL_ENV=test karma start test/unit/karma.conf.js --single-run",
"report-coverage": "codecov",
"lint": "eslint --fix ./src",
"prepare": "npm run dist"
},
"files": [
"dist",
"src",
"types",
"index.js"
],
"repository": {
"type": "git",
"url": "git+https://github.com/tm-fe/FlexTable.git"
},
"keywords": [
"flextable",
"div table",
"vue table",
"table"
],
"author": "tm",
"license": "MIT",
"bugs": {
"url": "https://github.com/tm-fe/FlexTable/issues"
},
"homepage": "https://github.com/tm-fe/FlexTable#readme",
"dependencies": {
"lodash.debounce": "^4.0.8",
"lodash.throttle": "^4.1.1",
"normalize-wheel": "^1.0.1",
"vue-checkbox-radio": "^0.6.0"
},
"devDependencies": {
"@babel/core": "^7.4.4",
"@babel/plugin-transform-runtime": "^7.4.4",
"@babel/preset-env": "^7.4.4",
"@babel/preset-stage-3": "^7.0.0",
"@babel/runtime": "^7.4.4",
"@types/chai": "^4.1.7",
"@types/mocha": "^5.2.7",
"@vue/test-utils": "^1.0.0-beta.29",
"autoprefixer-loader": "^3.2.0",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.5",
"babel-plugin-istanbul": "^5.1.4",
"babel-polyfill": "^6.26.0",
"chai": "^4.2.0",
"cross-env": "^5.2.0",
"css-loader": "^2.1.1",
"eslint": "^5.16.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.17.2",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-react": "^7.13.0",
"eslint-plugin-vue": "^5.2.2",
"friendly-errors-webpack-plugin": "^1.7.0",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.2.0",
"karma": "^4.1.0",
"karma-chrome-launcher": "^2.2.0",
"karma-coverage": "^1.1.2",
"karma-mocha": "^1.3.0",
"karma-sinon-chai": "^2.0.2",
"karma-sourcemap-loader": "^0.3.7",
"karma-spec-reporter": "^0.0.32",
"karma-webpack": "^3.0.5",
"less": "^3.9.0",
"less-loader": "^5.0.0",
"mocha": "^6.1.4",
"pre-commit": "^1.2.2",
"sass-loader": "^7.1.0",
"sinon": "^7.3.2",
"sinon-chai": "^3.3.0",
"style-loader": "^0.23.1",
"ts-loader": "^6.0.2",
"typescript": "^3.5.1",
"uglifyjs-webpack-plugin": "^2.1.2",
"url-loader": "^1.1.2",
"vue": "^2.6.10",
"vue-loader": "^15.7.0",
"vue-router": "^3.0.6",
"vue-style-loader": "^4.1.2",
"vue-template-compiler": "^2.6.10",
"webpack": "^4.30.0",
"webpack-cli": "^3.3.2",
"webpack-dev-server": "^3.3.1",
"webpack-merge": "^4.2.1"
},
"pre-commit": [
"lint"
]
}