-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
88 lines (88 loc) · 2.14 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
{
"name": "treetabular",
"version": "3.6.0",
"description": "Tree utilities",
"scripts": {
"test:all": "npm test && 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",
"prepublish": "npm run dist:build"
},
"main": "dist",
"repository": {
"type": "git",
"url": "https://github.com/reactabular/treetabular.git"
},
"keywords": [
"react",
"reactjs",
"table",
"tables",
"reactabular",
"tree",
"trees",
"algorithm"
],
"files": [
"dist",
"style.css"
],
"jest": {
"collectCoverage": true,
"moduleFileExtensions": [
"js"
],
"moduleDirectories": [
"node_modules"
],
"setupFiles": [
"./lib/test-setup.js"
]
},
"author": "Juho Vepsalainen <bebraw@gmail.com> (http://github.com/bebraw)",
"license": "MIT",
"bugs": {
"url": "https://github.com/reactabular/treetabular/issues"
},
"dependencies": {},
"devDependencies": {
"babel-cli": "^6.22.2",
"babel-core": "^6.22.1",
"babel-eslint": "^7.1.1",
"babel-jest": "^18.0.0",
"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-preset-es2015": "^6.22.0",
"babel-preset-react": "^6.22.0",
"classnames": "^2.2.5",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-plugin-import": "^2.20.0",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.18.0",
"git-prepush-hook": "^1.0.2",
"jest": "^18.1.0",
"lodash": "^4.17.4",
"prop-types": "^15.6.0",
"react": "^16.0.0",
"react-dnd": "^2.5.3",
"react-dom": "^16.0.0",
"reactabular-dnd": "^8.12.0",
"redux": "^3.6.0",
"rimraf": "^2.5.4",
"searchtabular": "^1.7.0",
"sortabular": "^1.5.0"
},
"peerDependencies": {
"lodash": ">= 4.0.0 < 5.0.0",
"react": ">= 15.0.0 < 17.0.0",
"redux": ">= 3.0.0 < 5.0.0"
},
"pre-push": [
"test:all"
]
}