forked from react-component/trigger
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.66 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
{
"name": "rc-trigger",
"version": "4.0.0-rc.5",
"description": "base abstract trigger component for react",
"engines": {
"node": ">=8.x"
},
"keywords": [
"react",
"react-component",
"react-trigger",
"trigger"
],
"homepage": "https://github.com/react-component/trigger",
"author": "",
"repository": {
"type": "git",
"url": "https://github.com/react-component/trigger.git"
},
"bugs": {
"url": "https://github.com/react-component/trigger/issues"
},
"files": [
"es",
"lib",
"assets/**/*.css",
"assets/**/*.less"
],
"license": "MIT",
"main": "./lib/index",
"module": "./es/index",
"scripts": {
"start": "cross-env NODE_ENV=development father doc dev --storybook",
"build": "father doc build --storybook",
"compile": "father build",
"prepublishOnly": "npm run compile && np --no-cleanup --yolo --no-publish",
"lint": "eslint src/ examples/ --ext .tsx,.ts,.jsx,.js",
"test": "father test",
"coverage": "father test --coverage",
"now-build": "npm run build"
},
"peerDependencies": {
"react": "*",
"react-dom": "*"
},
"devDependencies": {
"@types/jest": "^24.0.18",
"@types/react": "^16.8.19",
"@types/react-dom": "^16.8.4",
"cross-env": "^6.0.0",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.14.0",
"enzyme-to-json": "^3.4.0",
"father": "^2.13.2",
"np": "^5.0.3",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"typescript": "^3.5.2"
},
"dependencies": {
"classnames": "^2.2.6",
"prop-types": "15.x",
"raf": "^3.4.1",
"rc-align": "^3.0.0-rc.0",
"rc-animate": "^2.10.2",
"rc-util": "^4.15.2"
}
}