forked from react-component/select
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 2.35 KB
/
package.json
File metadata and controls
92 lines (92 loc) · 2.35 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
86
87
88
89
90
91
92
{
"name": "rc-select",
"version": "8.7.1",
"description": "React Select",
"keywords": [
"react",
"react-component",
"react-select",
"select"
],
"main": "./lib/index",
"module": "./es/index",
"files": [
"assets/*.css",
"es",
"lib"
],
"homepage": "http://github.com/react-component/select",
"repository": {
"type": "git",
"url": "git@github.com:react-component/select.git"
},
"bugs": {
"url": "http://github.com/react-component/select/issues"
},
"license": "MIT",
"config": {
"port": 8003
},
"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 --babel-runtime",
"lint": "rc-tools run lint",
"lint:fix": "rc-tools run lint --fix",
"prettier": "rc-tools run prettier",
"test": "rc-tools run test",
"prepublish": "rc-tools run guard",
"init-tslint": "rc-tools run gen-lint-config",
"init-storybook": "rc-tools run genStorybook",
"coverage": "rc-tools run test --coverage",
"pre-commit": "rc-tools run pre-commit",
"storybook": "rc-tools run storybook",
"lint-staged": "lint-staged"
},
"devDependencies": {
"@types/classnames": "^2.2.6",
"@types/enzyme": "^3.1.15",
"@types/react": "^16.7.17",
"@types/react-dom": "^16.0.11",
"@types/warning": "^3.0.0",
"enzyme": "^3.8.0",
"enzyme-adapter-react-16": "^1.7.1",
"enzyme-to-json": "^3.1.4",
"jsonp": "^0.2.0",
"lint-staged": "^8.1.0",
"pre-commit": "1.x",
"querystring": "^0.2.0",
"rc-dialog": "7.3.0",
"rc-test": "^6.0.1",
"rc-tools": "9.3.3",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"react-test-renderer": "^16.0.0",
"typescript": "^3.2.2"
},
"dependencies": {
"babel-runtime": "^6.23.0",
"classnames": "2.x",
"component-classes": "1.x",
"dom-scroll-into-view": "1.x",
"prop-types": "^15.5.8",
"raf": "^3.4.0",
"rc-animate": "2.x",
"rc-menu": "^7.3.0",
"rc-trigger": "^2.5.4",
"rc-util": "^4.0.4",
"react-lifecycles-compat": "^3.0.2",
"warning": "^4.0.2"
},
"pre-commit": [
"lint-staged"
],
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"npm run pre-commit",
"git add"
]
}
}