-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (80 loc) · 1.73 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
{
"name": "react-tree",
"version": "0.0.1",
"main": "index.js",
"repository": "https://github.com/kenshoo/react-tree.git",
"author": "ui@kenshoo.com",
"license": "MIT",
"private": true,
"workspaces": [
"packages/*"
],
"devDependencies": {
"@babel/core": "^7.8.4",
"@babel/preset-env": "^7.8.4",
"@babel/preset-react": "^7.8.3",
"@preconstruct/cli": "^1.1.7",
"auto": "^9.13.0",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"enzyme-to-json": "^3.4.4",
"jest": "^25.1.0",
"jest-junit": "^10.0.0",
"lerna": "^3.20.2",
"prettier": "1.19.1",
"react": "^16.12.0"
},
"preconstruct": {
"packages": [
"packages/*",
"!packages/docs"
]
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"jest": {
"moduleDirectories": [
"node_modules"
],
"setupFiles": [
"./enzyme.config.js"
],
"reporters": [
"default",
"jest-junit"
],
"collectCoverageFrom": [
"./packages/**/src/**/*.{js,jsx}"
]
},
"scripts": {
"postinstall": "preconstruct dev",
"build": "preconstruct build",
"test": "jest --coverage",
"storybook": "yarn workspace @kenshooui/react-tree-docs storybook",
"prettier": "prettier --check ./packages/**/*.js --ignore-path .gitignore",
"prettier:fix": "prettier --check ./packages/**/*.js --ignore-path .gitignore --write",
"release": "auto shipit"
},
"keywords": [
"react",
"components",
"select",
"search",
"find",
"ui",
"component",
"frontend",
"tree" ,
"searchintree",
"findintree",
"hierarchical",
"structure",
"form",
"input",
"items",
"list"
]
}