forked from react-component/switch
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.48 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.48 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
{
"name": "rc-switch",
"version": "3.2.2",
"description": "switch ui component for react",
"keywords": [
"react",
"react-component",
"react-switch",
"switch"
],
"main": "lib/index",
"module": "./es/index",
"files": [
"assets/*.css",
"es",
"lib"
],
"homepage": "http://github.com/react-component/switch",
"repository": {
"type": "git",
"url": "git@github.com:react-component/switch.git"
},
"bugs": {
"url": "http://github.com/react-component/switch/issues"
},
"license": "MIT",
"scripts": {
"start": "father doc dev --storybook",
"build": "father doc build --storybook",
"compile": "father build && lessc assets/index.less assets/index.css",
"gh-pages": "father doc deploy",
"prepublishOnly": "npm run compile && np --yolo --no-publish",
"lint": "eslint .",
"test": "father test",
"coverage": "father test --coverage"
},
"devDependencies": {
"@types/classnames": "^2.2.10",
"@types/jest": "^26.0.4",
"coveralls": "^3.0.6",
"enzyme": "^3.0.0",
"enzyme-adapter-react-16": "^1.0.1",
"enzyme-to-json": "^3.0.0",
"eslint": "^7.0.0",
"father": "^2.13.4",
"less": "^3.11.1",
"np": "^7.1.0",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"react-test-renderer": "^16.0.0"
},
"peerDependencies": {
"react": ">=16.9.0",
"react-dom": ">=16.9.0"
},
"dependencies": {
"@babel/runtime": "^7.10.1",
"classnames": "^2.2.1",
"rc-util": "^5.0.1"
}
}