-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1014 Bytes
/
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
{
"name": "@carlbleick/react-timepicker",
"version": "0.7.5",
"description": "",
"main": "dist/entry.js",
"source": "src/entry.js",
"scripts": {
"build": "npm run build-js && npm run copy-styles",
"build-js": "babel src -d dist",
"copy-styles": "node ./copy-styles.js",
"prepack": "rm -rf dist && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/carlbleick/react-timepicker.git"
},
"author": "carlbleick",
"license": "MIT",
"bugs": {
"url": "https://github.com/carlbleick/react-timepicker/issues"
},
"devDependencies": {
"@babel/cli": "^7.13.0",
"@babel/core": "^7.13.8",
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@babel/preset-env": "^7.13.8",
"@babel/preset-react": "^7.12.13",
"react": "^17.0.0",
"react-dom": "^17.0.0"
},
"peerDependencies": {
"react": ">= 16.10.2",
"react-dom": ">= 16.10.2"
},
"homepage": "https://github.com/carlbleick/react-timepicker#readme"
}