-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.78 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 1.78 KB
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
{
"name": "x-canvas-table",
"version": "0.0.7",
"description": "a table component got the highest performance that works on canvas.",
"keywords": [
"canvas table",
"canvas",
"table",
"grid"
],
"scripts": {
"dev": "webpack-dev-server --config ./webpack/webpack.dev.js --open --content-base",
"build:dist": "gulp",
"build:umd": "webpack --config ./webpack/webpack.prod.js",
"build": "gulp && webpack --config ./webpack/webpack.prod.js"
},
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist",
"umd"
],
"repository": "https://github.com/xwinstone/canvastable.git",
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"author": "xwinstone",
"license": "MIT",
"devDependencies": {
"@babel/core": "7.12.3",
"@babel/plugin-proposal-class-properties": "7.12.1",
"@babel/plugin-proposal-optional-chaining": "7.12.1",
"@babel/plugin-transform-runtime": "7.12.1",
"@babel/preset-env": "7.11.5",
"@babel/preset-react": "7.10.4",
"@babel/preset-typescript": "^7.12.1",
"babel-loader": "8.1.0",
"clean-webpack-plugin": "3.0.0",
"css-loader": "4.3.0",
"css-modules-typescript-loader": "4.0.1",
"del": "^4.1.1",
"file-loader": "^6.1.0",
"gulp": "^4.0.2",
"gulp-babel": "8.0.0",
"gulp-clean": "0.4.0",
"gulp-sass": "^5.1.0",
"gulp-typescript": "6.0.0-alpha.1",
"html-webpack-plugin": "4.5.0",
"merge2": "^1.4.1",
"sass": "^1.50.0",
"sass-loader": "^10.2.1",
"source-map-loader": "1.1.0",
"style-ext-html-webpack-plugin": "4.1.2",
"style-loader": "1.2.1",
"through2": "4.0.2",
"typescript": "4.0.3",
"webpack": "4.44.2",
"webpack-cli": "3.3.12",
"webpack-dev-server": "3.11.0",
"webpack-merge": "5.1.4"
}
}