1 | {
|
2 | "name": "treetabular",
|
3 | "version": "1.0.3",
|
4 | "description": "Tree utilities",
|
5 | "scripts": {
|
6 | "test:all": "npm test && npm run test:lint",
|
7 | "test": "jest --",
|
8 | "test:coverage": "jest --coverage --",
|
9 | "test:lint": "eslint . --ext .js --cache",
|
10 | "test:watch": "jest --watch --",
|
11 | "dist:build": "rimraf ./dist && babel ./src --out-dir ./dist",
|
12 | "preversion": "npm run test:all && npm run dist:build && git commit --allow-empty -am \"Update dist\""
|
13 | },
|
14 | "main": "dist",
|
15 | "repository": {
|
16 | "type": "git",
|
17 | "url": "https://github.com/reactabular/treetabular.git"
|
18 | },
|
19 | "keywords": [
|
20 | "react",
|
21 | "reactjs",
|
22 | "table",
|
23 | "tables",
|
24 | "reactabular",
|
25 | "tree",
|
26 | "trees",
|
27 | "algorithm"
|
28 | ],
|
29 | "files": [
|
30 | "dist"
|
31 | ],
|
32 | "jest": {
|
33 | "collectCoverage": true,
|
34 | "moduleFileExtensions": [
|
35 | "js"
|
36 | ],
|
37 | "moduleDirectories": [
|
38 | "node_modules"
|
39 | ],
|
40 | "setupFiles": [
|
41 | "lib/test-setup.js"
|
42 | ]
|
43 | },
|
44 | "author": "Juho Vepsalainen <bebraw@gmail.com> (http://github.com/bebraw)",
|
45 | "license": "MIT",
|
46 | "bugs": {
|
47 | "url": "https://github.com/reactabular/treetabular/issues"
|
48 | },
|
49 | "dependencies": {},
|
50 | "devDependencies": {
|
51 | "babel-cli": "^6.18.0",
|
52 | "babel-core": "^6.18.2",
|
53 | "babel-eslint": "^7.1.1",
|
54 | "babel-jest": "^17.0.2",
|
55 | "babel-plugin-lodash": "^3.2.10",
|
56 | "babel-plugin-syntax-object-rest-spread": "^6.13.0",
|
57 | "babel-plugin-transform-object-rest-spread": "^6.19.0",
|
58 | "babel-preset-es2015": "^6.18.0",
|
59 | "babel-preset-react": "^6.16.0",
|
60 | "classnames": "^2.2.5",
|
61 | "eslint": "^3.10.2",
|
62 | "eslint-config-airbnb": "^13.0.0",
|
63 | "eslint-plugin-import": "^2.2.0",
|
64 | "eslint-plugin-jsx-a11y": "^2.2.3",
|
65 | "eslint-plugin-react": "^6.7.1",
|
66 | "git-prepush-hook": "^1.0.1",
|
67 | "jest": "^17.0.3",
|
68 | "lodash": "^4.17.2",
|
69 | "react": "^15.4.1",
|
70 | "react-addons-test-utils": "^15.4.1",
|
71 | "react-dnd": "^2.1.4",
|
72 | "react-dom": "^15.4.1",
|
73 | "reactabular-dnd": "^7.0.0",
|
74 | "redux": "^3.6.0",
|
75 | "rimraf": "^2.5.4",
|
76 | "searchtabular": "^1.2.1",
|
77 | "sortabular": "^1.0.1"
|
78 | },
|
79 | "peerDependencies": {
|
80 | "lodash": ">= 3.0.0 < 5.0.0",
|
81 | "react": ">= 15.0.0 < 16.0.0",
|
82 | "reactabular-dnd": ">= 6.0.0 < 8.0.0",
|
83 | "searchtabular": ">= 1.0.0 < 2.0.0",
|
84 | "sortabular": ">= 1.0.0 < 2.0.0",
|
85 | "redux": ">= 3.0.0 < 4.0.0"
|
86 | },
|
87 | "pre-push": [
|
88 | "test:all"
|
89 | ]
|
90 | }
|