forked from react-component/table
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
114 lines (114 loc) · 2.56 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "rc-table",
"version": "6.4.0",
"description": "table ui component for react",
"keywords": [
"react",
"react-table",
"table",
"component",
"ui"
],
"files": [
"assets/*.css",
"dist",
"es",
"lib"
],
"main": "./lib/index",
"module": "./es/index",
"homepage": "http://github.com/react-component/table",
"maintainers": [
],
"repository": {
"type": "git",
"url": "[email protected]:react-component/table.git"
},
"bugs": {
"url": "http://github.com/react-component/table/issues"
},
"license": "MIT",
"config": {
"port": 8000,
"entry": {
"rc-table": [
"./assets/animation.less",
"./assets/bordered.less",
"./assets/index.less",
"./src/index.js"
]
}
},
"scripts": {
"dist": "rc-tools run dist",
"build": "rc-tools run build",
"compile": "rc-tools run compile --babel-runtime",
"gh-pages": "rc-tools run gh-pages",
"start": "rc-tools run server",
"pub": "rc-tools run pub --babel-runtime",
"lint": "rc-tools run lint",
"test": "jest",
"coverage": "jest --coverage",
"lint-staged": "lint-staged"
},
"jest": {
"setupFiles": [
"./tests/setup.js"
],
"collectCoverageFrom": [
"src/**/*"
],
"transform": {
"\\.jsx?$": "./node_modules/rc-tools/scripts/jestPreprocessor.js"
},
"snapshotSerializers": [
"enzyme-to-json/serializer"
]
},
"dependencies": {
"babel-runtime": "6.x",
"classnames": "^2.2.5",
"component-classes": "^1.2.6",
"lodash": "^4.17.5",
"mini-store": "^1.0.2",
"prop-types": "^15.5.8",
"rc-util": "^4.0.4",
"react-lifecycles-compat": "^3.0.2",
"shallowequal": "^1.0.2",
"warning": "^3.0.0"
},
"devDependencies": {
"enzyme": "^3.1.0",
"enzyme-adapter-react-16": "^1.0.1",
"enzyme-to-json": "^3.1.2",
"immutability-helper": "^2.4.0",
"jest": "^21.2.1",
"lint-staged": "^7.0.2",
"pre-commit": "1.x",
"prettier": "^1.11.1",
"rc-animate": "^2.3.0",
"rc-dropdown": "~2.0.1",
"rc-menu": "^5.0.11",
"rc-tools": "8.x",
"react": "^16.0.0",
"react-dnd": "^2.5.4",
"react-dnd-html5-backend": "^2.5.4",
"react-dom": "^16.0.0",
"react-resizable": "^1.7.5",
"react-test-renderer": "^16.0.0",
"react-virtualized": "^9.12.0",
"styled-components": "^2.2.1"
},
"lint-staged": {
"**/*.js": [
"npx prettier --write",
"git add"
]
},
"pre-commit": [
"lint-staged",
"lint"
]
}