-
Notifications
You must be signed in to change notification settings - Fork 202
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.02 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 2.02 KB
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
{
"name": "rc-tree-select",
"version": "2.5.3",
"description": "tree-select ui component for react",
"keywords": [
"react",
"react-component",
"react-tree-select",
"tree-select"
],
"homepage": "https://github.com/react-component/tree-select",
"author": "hualei5280@gmail.com",
"repository": {
"type": "git",
"url": "https://github.com/react-component/tree-select.git"
},
"bugs": {
"url": "https://github.com/react-component/tree-select/issues"
},
"files": [
"es",
"lib",
"dist",
"assets/*.css",
"assets/*.png",
"assets/*.gif"
],
"license": "MIT",
"main": "./lib/index",
"module": "./es/index",
"config": {
"port": 8007,
"entry": {
"rc-tree-select": [
"./assets/index.less",
"./src/index.js"
]
}
},
"scripts": {
"build": "rc-tools run storybook-build",
"compile": "rc-tools run compile --babel-runtime",
"gh-pages": "npm run build && rc-tools run storybook-gh-pages",
"start": "rc-tools run storybook",
"pub": "rc-tools run pub",
"lint": "rc-tools run lint",
"init-lint": "rc-tools run gen-lint-config",
"test": "rc-tools run test",
"coverage": "rc-tools run test --coverage",
"pre-commit": "rc-tools run pre-commit",
"lint-staged": "lint-staged",
"genStorybook": "rc-tools run genStorybook"
},
"dependencies": {
"classnames": "^2.2.1",
"prop-types": "^15.5.8",
"raf": "^3.4.0",
"rc-animate": "^3.0.0-rc.4",
"rc-tree": "~1.14.3",
"rc-trigger": "^3.0.0-rc.2",
"rc-util": "^4.5.0",
"react-lifecycles-compat": "^3.0.4",
"shallowequal": "^1.0.2",
"warning": "^4.0.1"
},
"devDependencies": {
"lint-staged": "^8.1.1",
"pre-commit": "1.x",
"rc-dialog": "^7.0.0",
"rc-form": "^2.4.2",
"rc-select": "^8.8.3",
"rc-tools": "^9.3.11",
"react": "^16.0.0",
"react-dom": "^16.0.0"
},
"pre-commit": [
"lint-staged"
],
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"npm run pre-commit",
"git add"
]
}
}