forked from react-component/trigger
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 1.83 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
{
"name": "rc-trigger",
"version": "5.2.9",
"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 && lessc assets/index.less assets/index.css",
"prepublishOnly": "npm run compile && np --yolo --no-publish",
"lint": "eslint src/ examples/ --ext .tsx,.ts,.jsx,.js",
"test": "father test",
"coverage": "father test --coverage",
"now-build": "npm run build"
},
"devDependencies": {
"@types/classnames": "^2.2.10",
"@types/enzyme": "^3.10.8",
"@types/jest": "^26.0.15",
"@types/react": "^16.8.19",
"@types/react-dom": "^16.8.4",
"cross-env": "^7.0.1",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.14.0",
"enzyme-to-json": "^3.4.0",
"eslint": "^7.0.0",
"father": "^2.30.2",
"less": "^3.10.3",
"np": "^6.2.0",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"regenerator-runtime": "^0.13.7",
"typescript": "^4.0.0"
},
"dependencies": {
"@babel/runtime": "^7.11.2",
"classnames": "^2.2.6",
"rc-align": "^4.0.0",
"rc-motion": "^2.0.0",
"rc-util": "^5.5.0"
},
"peerDependencies": {
"react": ">=16.9.0",
"react-dom": ">=16.9.0"
}
}