-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 2.54 KB
/
package.json
File metadata and controls
92 lines (92 loc) · 2.54 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "react-organizer",
"version": "0.0.8",
"description": "Organizer is a lightweight, fast and extendable render props component",
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "https://github.com/davidalekna/react-organizer.git"
},
"bugs": {
"url": "https://github.com/davidalekna/react-organizer/issues"
},
"homepage": "https://github.com/davidalekna/react-organizer#readme",
"keywords": [
"react",
"react-component",
"component",
"calendar",
"date-picker",
"datepicker",
"date",
"picker",
"event",
"events manager",
"date-fns",
"calendar",
"render-props"
],
"author": "David Alekna <alekna@live.co.uk>",
"license": "MIT",
"scripts": {
"prebuild": "rimraf dist",
"build": "babel src -d dist",
"test": "jest --coverage",
"test:watch": "jest --watch",
"prepare": "npm run build",
"validate": "npm-run-all --parallel test build",
"report-coverage": "codecov",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"deploy-storybook": "storybook-to-ghpages"
},
"devDependencies": {
"@babel/cli": "^7.1.2",
"@babel/core": "^7.1.2",
"@babel/plugin-proposal-class-properties": "^7.1.0",
"@babel/plugin-proposal-logical-assignment-operators": "^7.0.0",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0",
"@babel/plugin-syntax-object-rest-spread": "^7.0.0",
"@babel/preset-env": "^7.1.0",
"@babel/preset-react": "^7.0.0",
"@storybook/addon-actions": "^3.4.11",
"@storybook/addon-links": "^3.4.11",
"@storybook/addons": "^3.4.11",
"@storybook/react": "^3.4.11",
"@storybook/storybook-deployer": "^2.3.0",
"@types/react": "^16.4.14",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^9.0.0",
"babel-jest": "^23.4.2",
"babel-runtime": "^6.26.0",
"codecov": "^3.0.4",
"eslint": "^5.6.1",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-react": "^7.11.1",
"eslint-watch": "^4.0.2",
"ghooks": "^2.0.4",
"jest": "^23.5.0",
"npm-run-all": "^4.1.3",
"prop-types": "^15.6.2",
"react": "^16.5.2",
"react-dom": "^16.5.2",
"react-testing-library": "^5.1.0"
},
"peerDependencies": {
"prop-types": "^15.6.0",
"react": "^15.3.0 || ^16.0.0-0"
},
"files": [
"dist"
],
"config": {
"ghooks": {
"pre-commit": "npm run validate"
}
},
"dependencies": {
"date-fns": "^2.0.0-alpha.18",
"hoist-non-react-statics": "^3.0.1"
}
}