forked from reactabular/reactabular
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
131 lines (131 loc) · 3.76 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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
{
"private": true,
"name": "reactabular",
"version": "1.0.0",
"description": "Spectacular tables for React",
"scripts": {
"bootstrap": "lerna bootstrap",
"init": "npm install && lerna bootstrap",
"start": "webpack-dev-server",
"test": "jest --",
"test:coverage": "jest --coverage --",
"test:watch": "jest --watch --",
"test:lint": "eslint . --ext .js --ext .jsx --cache",
"gh-pages:build-and-deploy": "npm run gh-pages:build && npm run gh-pages:deploy",
"gh-pages:build": "webpack",
"gh-pages:deploy": "gh-pages -d gh-pages",
"gh-pages:stats": "webpack --json --profile > stats.json",
"publish": "lerna publish",
"postinstall": "node lib/post_install.js",
"postpublish": "npm run gh-pages:build-and-deploy"
},
"repository": {
"type": "git",
"url": "https://github.com/reactabular/reactabular.git"
},
"keywords": [
"react",
"reactjs",
"table",
"tables"
],
"files": [
"lib/post_install.js",
"lerna.json",
"packages/**/*.js"
],
"author": "Juho Vepsalainen <[email protected]> (http://github.com/bebraw)",
"license": "MIT",
"main": "packages/reactabular",
"bugs": {
"url": "https://github.com/reactabular/reactabular/issues"
},
"homepage": "http://reactabular.js.org/",
"jest": {
"collectCoverage": true,
"moduleFileExtensions": [
"js",
"jsx"
],
"moduleDirectories": [
"node_modules",
"packages"
],
"setupFiles": [
"./lib/test_setup.js"
]
},
"devDependencies": {
"annogenerate": "^0.8.1",
"babel-cli": "^6.22.2",
"babel-core": "^6.22.1",
"babel-eslint": "^7.1.1",
"babel-jest": "^18.0.0",
"babel-loader": "^6.2.10",
"babel-plugin-lodash": "^3.2.11",
"babel-plugin-syntax-object-rest-spread": "^6.13.0",
"babel-plugin-transform-object-rest-spread": "^6.22.0",
"babel-plugin-transform-react-remove-prop-types": "^0.3.2",
"babel-preset-es2015": "^6.22.0",
"babel-preset-react": "^6.22.0",
"babel-preset-react-hmre": "^1.1.1",
"catalog": "github:bebraw/catalog#reactabular",
"chai": "^3.5.0",
"classnames": "^2.2.5",
"clean-webpack-plugin": "^0.1.15",
"copy-webpack-plugin": "^4.0.1",
"css-loader": "^0.26.1",
"deep-diff": "^0.3.4",
"eslint": "^3.15.0",
"eslint-config-airbnb": "^14.1.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.9.0",
"expose-loader": "^0.7.1",
"extract-text-webpack-plugin": "^1.0.1",
"file-loader": "^0.10.0",
"gh-pages": "^0.12.0",
"git-prepush-hook": "^1.0.2",
"html-loader": "^0.4.4",
"html-webpack-plugin": "^2.28.0",
"jest": "^19.0.2",
"lerna": "2.0.0-beta.37",
"lodash": "^4.17.4",
"prop-types": "^15.5.8",
"purecss": "^0.6.2",
"raw-loader": "^0.5.1",
"react": "^15.5.4",
"react-addons-perf": "^15.4.2",
"react-dnd": "^2.2.3",
"react-dnd-html5-backend": "^2.2.3",
"react-dom": "^15.5.4",
"react-edit": "^6.2.0",
"react-github-corner": "^0.3.0",
"react-pagify": "^2.1.1",
"react-redux": "^5.0.2",
"react-visibility-toggles": "^1.1.1",
"reactabular-column-extensions": "^8.9.3",
"reactabular-easy": "^9.1.2",
"reactabular-resizable": "^8.9.0",
"redux": "^3.6.0",
"schema2object": "^0.4.0",
"searchtabular": "^1.3.2",
"segmentize": "^0.4.1",
"selectabular": "^2.0.1",
"sortabular": "^1.2.0",
"style-loader": "^0.13.1",
"styled-components": "^1.4.5",
"stylesheet-helpers": "^0.2.2",
"table-resolver": "^3.1.0",
"treetabular": "^3.1.1",
"url-loader": "^0.5.7",
"uuid": "^3.0.1",
"webpack": "^1.14.0",
"webpack-dev-server": "^1.16.2",
"webpack-merge": "^2.6.1"
},
"pre-push": [
"test:lint",
"test"
]
}