-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.97 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.97 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
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "@mooncake-dev/react-day-time-picker",
"version": "1.0.5",
"description": "A React component to help with scheduling a day and time.",
"scripts": {
"test": "jest",
"test:coverage": "jest --coverage",
"lint": "eslint 'src/**/*.{js,jsx}'",
"lint:format": "npm run lint -- --fix",
"start": "rimraf .cache dev && parcel docs/index.html --out-dir dev",
"build-docs": "parcel build docs/index.html",
"build-lib": "babel src --out-dir lib",
"prepublishOnly": "npm run build-lib"
},
"main": "lib/index.js",
"files": [
"lib"
],
"repository": {
"type": "git",
"url": "git+https://github.com/mooncake-dev/react-day-time-picker.git"
},
"keywords": [
"react",
"day-time-picker",
"scheduling"
],
"author": "Daniël Illouz <daniel.illouz@me.com> (https://www.danillouz.dev/)",
"contributors": [
"Daniël Illouz <daniel.illouz@me.com>",
"Dinos Theodorou <dinostheo@gmail.com>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/mooncake-dev/react-day-time-picker/issues"
},
"homepage": "https://github.com/mooncake-dev/react-day-time-picker#readme",
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.5",
"@babel/preset-env": "^7.4.5",
"@babel/preset-react": "^7.0.0",
"babel-jest": "^24.8.0",
"eslint": "^5.16.0",
"eslint-config-prettier": "^4.3.0",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-react": "^7.13.0",
"eslint-plugin-react-hooks": "^1.6.0",
"jest": "^24.8.0",
"parcel-bundler": "^1.12.4",
"prettier": "^1.17.1",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"rimraf": "^2.6.3"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.18",
"@fortawesome/free-solid-svg-icons": "^5.8.2",
"@fortawesome/react-fontawesome": "^0.1.4",
"date-fns": "^1.30.1",
"prism-react-renderer": "^0.1.6",
"styled-components": "^4.2.0"
},
"peerDependencies": {
"react": "^16.8.6"
}
}