-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
82 lines (82 loc) · 2.25 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
{
"name": "rb-table",
"version": "1.0.20",
"description": "High performance table with fixed columns and header support",
"main": "lib/rb-table.js",
"unpkg": "dist/rb-table.js",
"module": "es/rb-table.js",
"files": [
"dist",
"lib",
"es",
"src"
],
"scripts": {
"start": "webpack-dev-server --config webpack.config.dev.js --hot",
"clean": "rimraf lib dist es coverage",
"build": "rollup -c",
"build-doc": "webpack",
"prepare": "npm run clean && npm run build"
},
"keywords": [
"react",
"table",
"auto width",
"fixed column",
"fixed header",
"custom scrollbar",
"less",
"sass"
],
"repository": "github:sijiecai/rb-table",
"bugs": "https://github.com/sijiecai/rb-table/issues",
"authors": [
"Sijie Cai <[email protected]> (https://github.com/sijiecai)"
],
"license": "ISC",
"peerDependencies": {
"react": "0.14.x || 15.x || 16.x",
"react-dom": "0.14.x || 15.x || 16.x"
},
"dependencies": {
"normalize-wheel": "^1.0.1",
"prop-types": "^15.5.7"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-jest": "^22.4.3",
"babel-loader": "^7.1.5",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-react-remove-prop-types": "^0.4.19",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-1": "^6.24.1",
"babel-register": "^6.26.0",
"cross-env": "^5.1.4",
"css-loader": "^1.0.0",
"glob": "^7.1.1",
"jest": "^22.4.3",
"less": "^3.8.1",
"less-loader": "^4.1.0",
"react": "^16.6.0",
"react-dom": "^16.6.0",
"react-resizable": "^1.7.5",
"rimraf": "^2.6.2",
"rollup": "^0.66.0",
"rollup-plugin-babel": "^3.0.3",
"rollup-plugin-clear": "^2.0.7",
"rollup-plugin-commonjs": "^9.2.0",
"rollup-plugin-copy": "^0.2.3",
"rollup-plugin-node-resolve": "^3.3.0",
"rollup-plugin-postcss": "^1.6.2",
"rollup-plugin-replace": "^2.0.0",
"rollup-plugin-terser": "^3.0.0",
"style-loader": "^0.23.1",
"webpack": "^4.23.0",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.1.14"
}
}