-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
94 lines (94 loc) · 3.02 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
{
"name": "@cbi/react-propertable",
"version": "0.2.12",
"description": "A proper data table for React",
"main": "lib/ProperTable.js",
"scripts": {
"test": "webpack && karma start --single-run --no-auto-watch karma.conf.js",
"clean": "rm -Rvf css && rm -Rvf dist && rm -Rvf lib && mkdir dist && mkdir css && mkdir lib",
"watch": "karma start --auto-watch --no-single-run karma.conf.js",
"start": "webpack-dev-server --hot --inline --config webpack.config.example.js",
"build": "npm run clean && babel src/jsx --out-dir lib && webpack && cp -rvf src/css/* css/",
"release": "npm run build && webpack --config webpack.config.min.js",
"release-fixed": "webpack --config webpack.config.fixed.min.js",
"build-example": "webpack --config webpack.config.example.dist.js"
},
"repository": {
"type": "git",
"url": "https://github.com/CBIConsulting/ProperTable.git"
},
"keywords": [
"react-component",
"datatable",
"datatables",
"table",
"ui"
],
"author": "algm",
"license": "MIT",
"bugs": {
"url": "https://github.com/CBIConsulting/ProperTable/issues"
},
"homepage": "https://github.com/CBIConsulting/ProperTable",
"devDependencies": {
"autoprefixer-loader": "2.0.0",
"babel-cli": "6.5.0",
"babel-core": "6.7.2",
"babel-loader": "6.2.4",
"babel-plugin-add-module-exports": "0.1.2",
"babel-plugin-transform-es2015-modules-commonjs": "6.7.0",
"babel-plugin-transform-es3-member-expression-literals": "6.5.0",
"babel-plugin-transform-es3-property-literals": "6.5.0",
"babel-preset-es2015": "6.6.0",
"babel-preset-es2015-loose": "7.0.0",
"babel-preset-react": "6.5.0",
"compass-mixins": "0.12.7",
"core-js": "1.0.1",
"css-loader": "0.23.1",
"es3ify": "0.2.0",
"eslint": "6.6.0",
"eslint-plugin-react": "3.6.3",
"extract-text-webpack-plugin": "0.8.2",
"file-loader": "0.8.4",
"glob": "6.0.4",
"imports-loader": "0.6.4",
"jasmine": "2.3.2",
"jasmine-core": "2.3.4",
"jquery": "3.5.0",
"json-loader": "0.5.2",
"karma": "0.13.9",
"karma-chrome-launcher": "0.2.0",
"karma-cli": "0.1.0",
"karma-coverage": "0.5.0",
"karma-firefox-launcher": "0.1.6",
"karma-jasmine": "0.3.6",
"karma-notification-reporter": "0.0.1",
"karma-phantomjs-launcher": "0.2.1",
"karma-sourcemap-loader": "0.3.5",
"karma-webpack": "1.7.0",
"phantomjs": "1.9.18",
"react-addons-test-utils": "0.14.7",
"sass-loader": "3.2.0",
"node-sass": "3.4.2",
"style-loader": "0.13.1",
"webpack": "1.12.14",
"webpack-dev-server": "1.14.1"
},
"dependencies": {
"binarysearch": "1.0.0",
"clone": "1.0.2",
"deepmerge": "0.2.10",
"dot-object": "1.4.1",
"es6-set": "0.1.4",
"fixed-data-table": "0.6.0",
"immutable": "3.7.6",
"moment": "2.10.6",
"numeral": "1.5.3",
"react": "0.14.7",
"react-dom": "0.14.7",
"react-immutable-render-mixin": "0.9.5",
"element-resize-event": "2.0.4",
"tween.js": "16.3.4",
"underscore": "1.8.3"
}
}