forked from react-component/input-number
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 1.89 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
{
"name": "rc-input-number",
"version": "6.1.1",
"description": "React input-number component",
"keywords": [
"react",
"react-component",
"react-input-number",
"input-number"
],
"files": [
"lib",
"es",
"assets/*.css"
],
"main": "./lib/index",
"module": "./es/index",
"homepage": "https://github.com/react-component/input-number",
"author": "[email protected]",
"repository": {
"type": "git",
"url": "[email protected]:react-component/input-number.git"
},
"bugs": {
"url": "http://github.com/react-component/input-number/issues"
},
"license": "MIT",
"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",
"gh-pages": "npm run build && father doc deploy",
"prepublishOnly": "npm run compile && np --yolo --no-publish",
"postpublish": "npm run gh-pages",
"lint": "eslint src/ --ext .ts,.tsx,.jsx,.js,.md",
"prettier": "prettier --write \"**/*.{ts,tsx,js,jsx,json,md}\"",
"test": "father test",
"coverage": "father test --coverage"
},
"dependencies": {
"@babel/runtime": "^7.10.1",
"classnames": "^2.2.5",
"rc-util": "^5.0.1"
},
"devDependencies": {
"@types/classnames": "^2.2.9",
"@types/jest": "^26.0.0",
"@types/react": "^16.9.2",
"@types/react-dom": "^16.9.0",
"@umijs/fabric": "^2.0.0",
"cross-env": "^7.0.0",
"enzyme": "^3.1.1",
"enzyme-adapter-react-16": "^1.0.1",
"enzyme-to-json": "^3.1.2",
"eslint": "^7.1.0",
"expect.js": "~0.3.1",
"father": "^2.22.0",
"less": "^3.12.2",
"np": "^6.0.0",
"rc-tooltip": "^4.0.3",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"sinon": "^9.0.1",
"typescript": "^4.0.2"
},
"peerDependencies": {
"react": ">=16.9.0",
"react-dom": ">=16.9.0"
}
}