-
Notifications
You must be signed in to change notification settings - Fork 42
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.5 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.5 KB
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
{
"name": "react-dropdown-date",
"version": "2.4.0",
"description": "Highly customizable react based date picker. Select date from Day, Month and Year dropdown",
"license": "MIT",
"keywords": [
"react-dropdown-date",
"dropdown-date",
"dropdown",
"date",
"date-picker",
"react",
"react-date"
],
"main": "dist/index.js",
"module": "dist/index.esm.js",
"repository": {
"type": "git",
"url": "https://github.com/ssxv/react-dropdown-date.git"
},
"author": {
"name": "Satyendra Singh",
"email": "satyendraxv@gmail.com"
},
"peerDependencies": {
"react": ">=16",
"react-dom": ">=16"
},
"devDependencies": {
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"babel-core": "^6.26.3",
"babel-runtime": "^6.26.0",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"rimraf": "^6.1.3",
"rollup": "^4.57.1",
"rollup-plugin-typescript2": "^0.36.0",
"typescript": "^5.9.3"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "rollup -c",
"clean": "rimraf dist",
"prepublishOnly": "npm run clean && npm run build",
"start": "rollup -c -w"
},
"files": [
"dist"
],
"bugs": {
"url": "https://github.com/ssxv/react-dropdown-date/issues"
},
"homepage": "https://github.com/ssxv/react-dropdown-date"
}