forked from react-component/pagination
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 1.7 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
{
"name": "rc-pagination",
"version": "1.17.14",
"description": "pagination ui component for react",
"keywords": [
"react",
"react-component",
"react-pagination",
"pagination"
],
"homepage": "http://github.com/react-component/pagination",
"author": "[email protected]",
"repository": {
"type": "git",
"url": "[email protected]:react-component/pagination.git"
},
"bugs": {
"url": "http://github.com/react-component/pagination/issues"
},
"license": "MIT",
"files": [
"dist",
"lib",
"es",
"assets/*.css",
"rc-pagination.d.ts"
],
"main": "lib/index",
"module": "es/index",
"types": "rc-pagination.d.ts",
"config": {
"port": 3000,
"entry": {
"rc-pagination": [
"./src/index.js",
"./assets/index.less"
]
}
},
"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",
"lint:fix": "rc-tools run lint --fix",
"karma": "rc-test run karma",
"saucelabs": "rc-test run saucelabs",
"test": "rc-test run test",
"chrome-test": "rc-test run chrome-test",
"coverage": "rc-test run coverage"
},
"devDependencies": {
"core-js": "^3.0.0",
"expect.js": "0.3.x",
"pre-commit": "1.x",
"rc-select": "9.x",
"rc-test": "^6.0.1",
"rc-tools": "6.x",
"react": "^16.5.2",
"react-dom": "^16.5.2"
},
"pre-commit": [
"lint"
],
"dependencies": {
"babel-runtime": "6.x",
"prop-types": "^15.5.7",
"react-lifecycles-compat": "^3.0.4"
}
}