UNPKG

2.25 kBJSONView Raw
1{
2 "name": "eyzy-tree",
3 "version": "v0.2.2",
4 "author": "Kostiantyn <phlyze@gmail.com>",
5 "description": "React tree component",
6 "homepage": "https://eyzy.gitbook.io/tree/",
7 "license": "MIT",
8 "dependencies": {
9 "react": "^16.6.3",
10 "react-dom": "^16.8.6"
11 },
12 "library": "EyzyTree",
13 "module": "es/eyzy-tree.js",
14 "main": "lib/eyzy-tree.js",
15 "scripts": {
16 "build": "cross-env NODE_ENV=production rollup -c",
17 "start": "cross-env NODE_ENV=development rollup -cw",
18 "test": "jest",
19 "npm_publish": "npm test && npm run build && npm publish"
20 },
21 "devDependencies": {
22 "react": "^16.6.3",
23 "react-dom": "^16.8.6",
24 "@types/enzyme": "^3.9.1",
25 "@types/jest": "^23.3.1",
26 "@types/node": "^10.9.2",
27 "@types/react": "^16.4.12",
28 "@types/react-dom": "^16.0.7",
29 "@types/enzyme-adapter-react-16": "^1.0.5",
30 "cross-env": "^5.2.0",
31 "enzyme": "^3.9.0",
32 "enzyme-adapter-react-16": "^1.12.1",
33 "jest": "^24.7.1",
34 "typescript": "^3.0.1",
35 "rollup": "^0.67.1",
36 "rollup-plugin-node-resolve": "^3.4.0",
37 "rollup-plugin-scss": "^0.4.0",
38 "rollup-plugin-serve": "^0.6.0",
39 "rollup-plugin-tslint": "^0.2.2",
40 "rollup-plugin-typescript": "^1.0.0",
41 "rollup-plugin-uglify-es": "0.0.1",
42 "ts-jest": "^24.0.1",
43 "tslib": "^1.9.3",
44 "tslint-config-prettier": "^1.17.0",
45 "tslint-react": "^3.6.0"
46 },
47 "repository": {
48 "type": "git",
49 "url": "git+https://github.com/eyzy/eyzy-tree.git"
50 },
51 "keywords": [
52 "react",
53 "tree",
54 "component",
55 "react-tree",
56 "treeview",
57 "structure",
58 "tree-component",
59 "checkbox-tree"
60 ],
61 "files": [
62 "src",
63 "dist",
64 "style.css",
65 "api.js",
66 "lib",
67 "es"
68 ],
69 "babel": {
70 "presets": [
71 "react-app"
72 ]
73 },
74 "jest": {
75 "moduleDirectories": [
76 "node_modules",
77 "src"
78 ],
79 "moduleNameMapper": {
80 "\\.(scss)$": "<rootDir>/tests/__mocks__/styleMock.js",
81 "^@/(.*)$": "<rootDir>/src/$1"
82 },
83 "transform": {
84 "^.+\\.tsx?$": "ts-jest"
85 },
86 "globals": {
87 "ts-jest": {
88 "tsConfig": "tsconfig.test.json"
89 }
90 }
91 }
92}