forked from react-component/rate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.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
{
"name": "rnb-rc-rate",
"version": "2.5.4",
"description": "React Star Rate Component",
"keywords": [
"react",
"react-component",
"react-rate",
"rate"
],
"homepage": "https://github.com/react-component/rate",
"repository": {
"type": "git",
"url": "https://github.com/react-component/rate.git"
},
"bugs": {
"url": "https://github.com/react-component/rate/issues"
},
"files": [
"lib",
"es",
"assets/*.css"
],
"licenses": "MIT",
"main": "./lib/index",
"module": "./es/index",
"config": {
"port": 8000
},
"scripts": {
"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",
"lint": "rc-tools run lint",
"test": "rc-tools run test",
"coverage": "rc-tools run test --coverage",
"pre-commit": "rc-tools run pre-commit",
"lint-staged": "lint-staged"
},
"dependencies": {
"classnames": "^2.2.5",
"prop-types": "^15.5.8",
"rc-util": "^4.3.0",
"react-lifecycles-compat": "^3.0.4"
},
"devDependencies": {
"enzyme": "^3.1.1",
"jest": "^21.2.1",
"lint-staged": "^8.1.0",
"pre-commit": "1.x",
"rc-tools": "^9.2.0",
"rc-tooltip": "^3.7.3",
"react": "^16.0.0",
"react-dom": "^16.0.0"
},
"pre-commit": [],
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"npm run pre-commit",
"git add"
]
}
}