-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
91 lines (91 loc) · 2.4 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
{
"name": "reactabular-easy",
"version": "9.2.0",
"description": "Easy, opinionated wrapper for Reactabular",
"scripts": {
"pretest": "npm run test:lint",
"test": "jest --",
"test:coverage": "jest --coverage --",
"test:lint": "eslint . --ext .js --cache",
"test:watch": "jest --watch --",
"dist:build": "rimraf ./dist && babel ./src --out-dir ./dist",
"preversion": "npm run test && npm run dist:build && git commit --allow-empty -am \"Update dist\""
},
"main": "dist",
"repository": {
"type": "git",
"url": "https://github.com/reactabular/easy.git"
},
"keywords": [
"react",
"reactjs",
"table",
"tables",
"reactabular"
],
"files": [
"dist",
"style.css"
],
"jest": {
"collectCoverage": true,
"moduleFileExtensions": [
"js"
],
"moduleDirectories": [
"node_modules"
]
},
"author": "Juho Vepsalainen <[email protected]> (http://github.com/bebraw)",
"license": "MIT",
"bugs": {
"url": "https://github.com/reactabular/easy/issues"
},
"dependencies": {
"classnames": "^2.2.5",
"prop-types": "^15.6.0",
"react-dnd": "^2.5.3",
"reactabular-column-extensions": "^8.9.3",
"reactabular-dnd": "^8.9.0",
"reactabular-sticky": "^8.11.1",
"reactabular-table": "^8.11.1",
"reactabular-virtualized": "^8.11.0",
"searchtabular": "^1.7.0",
"selectabular": "^2.1.0",
"sortabular": "^1.5.0",
"table-resolver": ">= 3.0.0 < 4.0.0",
"treetabular": "^2.1.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^7.2.3",
"babel-jest": "^21.2.0",
"babel-plugin-syntax-object-rest-spread": "^6.13.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"eslint": "^3.19.0",
"eslint-config-airbnb": "^13.0.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^2.2.3",
"eslint-plugin-react": "^6.10.3",
"git-prepush-hook": "^1.0.2",
"jest": "^21.2.1",
"lodash": "^4.17.2",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"reactabular-resizable": "^8.10.0",
"redux": "^3.7.2",
"rimraf": "^2.6.2",
"webpack-merge": "^2.6.1"
},
"peerDependencies": {
"lodash": ">= 3.0.0 < 5.0.0",
"react": ">= 0.11.2 < 17.0.0",
"redux": ">= 3.0.0 < 5.0.0"
},
"pre-push": [
"test:all"
]
}