-
Notifications
You must be signed in to change notification settings - Fork 37
/
package.json
90 lines (90 loc) · 2.19 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "rc-queue-anim",
"version": "2.0.0",
"description": "Queue animation component for react",
"keywords": [
"react",
"react-component",
"queue",
"react-queue-anim",
"queue-anim",
"queue-animte",
"queue-animation",
"animation",
"animate",
"rc-animation",
"rc-animate",
"motion",
"rc-motion",
"ant-motion"
],
"homepage": "https://github.com/react-component/queue-anim",
"author": "[email protected]",
"repository": {
"type": "git",
"url": "https://github.com/react-component/queue-anim.git"
},
"bugs": {
"url": "https://github.com/react-component/queue-anim/issues"
},
"files": [
"lib",
"assets/*.css",
"dist",
"es",
"index.d.ts"
],
"licenses": "MIT",
"main": "./lib/index",
"module": "./es/index",
"scripts": {
"start": "dumi dev",
"docs:build": "dumi build",
"docs:deploy": "gh-pages -d docs-dist",
"compile": "father-build",
"deploy": "npm run docs:build && npm run docs:deploy",
"prettier": "prettier --write \"**/*.{js,jsx,tsx,ts,less,md,json}\"",
"test": "umi-test test",
"test:coverage": "umi-test --coverage",
"prepublishOnly": "npm run compile && np --tag=beta --no-cleanup --yolo --no-publish --any-branch",
"lint": "eslint src/ --fix --ext .tsx,.ts",
"lint:tsc": "tsc -p tsconfig.json --noEmit",
"now-build": "npm run docs:build"
},
"devDependencies": {
"@ant-design/icons": "^4.3.0",
"@types/enzyme": "^3.10.5",
"@types/lodash": "^4.14.135",
"@types/react": "^16.8.19",
"@types/react-dom": "^16.8.4",
"@umijs/test": "^3.2.28",
"antd": "^4.8.4",
"dumi": "^1.1.19",
"eslint": "^7.14.0",
"father": "^2.22.6",
"father-build": "^1.18.6",
"gh-pages": "^3.1.0",
"husky": "^7.0.1",
"np": "^7.5.0",
"prettier": "^2.1.2",
"react": "^16.9.0",
"react-dom": "^16.9.0",
"regenerator-runtime": "^0.13.7",
"typescript": "^4.0.2"
},
"peerDependencies": {
"react": ">=16.9.0",
"react-dom": ">=16.9.0"
},
"dependencies": {
"@babel/runtime": "^7.11.1",
"tween-one": "^1.0.52"
},
"husky": {
"hooks": {
"pre-commit": [
"npm run lint"
]
}
}
}