-
Notifications
You must be signed in to change notification settings - Fork 47
/
package.json
88 lines (88 loc) · 1.95 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
{
"name": "@alex_xu/react-slider-vertify",
"version": "1.1.9",
"author": "alex_xu",
"description": "Slide verification component based on react",
"keywords": [
"slider-vertify",
"react-slider-vertify",
"component",
"components",
"design",
"framework",
"frontend",
"react",
"react-component",
"ui",
"徐小夕"
],
"scripts": {
"start": "dumi dev",
"docs:build": "dumi build",
"docs:deploy": "gh-pages -d docs-dist",
"build": "father-build",
"deploy": "npm run docs:build && npm run docs:deploy",
"release": "npm run build && npm publish --access public",
"prettier": "prettier --write \"**/*.{js,jsx,tsx,ts,less,md,json}\"",
"test": "umi-test",
"test:coverage": "umi-test --coverage"
},
"contributors": [
"alex_xu"
],
"files": [
"dist",
"lib",
"es"
],
"main": "lib/index.js",
"module": "es/index.js",
"typings": "dist/index.d.ts",
"browserslist": [
"last 2 version",
"Firefox ESR",
"> 1%",
"ie >= 9"
],
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.{js,jsx,less,md,json}": [
"prettier --write"
],
"*.ts?(x)": [
"prettier --parser=typescript --write"
]
},
"homepage": "https://github.com/MrXujiang/react-slider-vertify",
"bugs": {
"url": "https://github.com/MrXujiang/react-slider-vertify/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com:MrXujiang/react-slider-vertify.git"
},
"dependencies": {
"@babel/runtime": "^7.15.4"
},
"peerDependencies": {
"react": "^16.9.23"
},
"resolutions": {
"@types/react": "^16.9.23"
},
"devDependencies": {
"@umijs/test": "^3.0.5",
"dumi": "^1.0.16",
"father-build": "^1.17.2",
"gh-pages": "^3.0.0",
"lint-staged": "^10.0.7",
"prettier": "^2.2.1",
"yorkie": "^2.0.0"
},
"license": "MIT",
"publishConfig": {
"registry": "https://registry.npmjs.com"
}
}