forked from arthurdenner/react-semantic-ui-datepickers
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 2.63 KB
/
package.json
File metadata and controls
99 lines (99 loc) · 2.63 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
93
94
95
96
97
98
99
{
"name": "react-semantic-ui-datepickers",
"version": "0.0.0-development",
"description": "Datepickers built with Semantic UI for React and Dayzed",
"main": "dist/react-semantic-ui-datepickers.js",
"typings": "./dist/index.d.ts",
"scripts": {
"build": "kcd-scripts build --bundle cjs.minify",
"deploy": "now --public ./storybook-static -A ../now.json && now alias",
"lint": "kcd-scripts lint",
"predeploy": "npm run storybook:build",
"prepare": "cd date-fns-v2/ && npm install",
"semantic-release": "semantic-release",
"storybook": "start-storybook -p 9001 -c stories",
"storybook:build": "build-storybook -c stories",
"storybook:serve": "serve ./storybook-static -p 6006",
"test": "kcd-scripts test",
"travis-deploy-once": "travis-deploy-once",
"validate": "kcd-scripts validate"
},
"husky": {
"hooks": {
"pre-commit": "kcd-scripts pre-commit"
}
},
"files": [
"dist"
],
"keywords": [
"semantic-ui",
"calendar",
"react",
"render-props"
],
"author": "Arthur Denner <arthurdenner7@gmail.com>",
"license": "MIT",
"dependencies": {
"@babel/runtime": "^7.4.5",
"classnames": "^2.2.5",
"core-js": "^3.1.3",
"date-fns": "^1.29.0",
"dayzed": "^2.2.0",
"format-string-by-pattern": "^1.0.0",
"react-fast-compare": "^2.0.1"
},
"devDependencies": {
"@storybook/react": "^3.4.0",
"babel-core": "^6.26.0",
"babel-runtime": "^6.26.0",
"kcd-scripts": "^1.4.0",
"prop-types": "^15.6.1",
"react": ">=16.2.1",
"react-dom": ">=16.2.1",
"rollup-plugin-copy": "^0.2.3",
"rollup-plugin-postcss": "^1.6.2",
"semantic-release": "^15.13.12",
"semantic-ui-css": "^2.3.1",
"semantic-ui-react": "^0.79.1",
"serve": "^10.0.0",
"travis-deploy-once": "^5.0.1"
},
"peerDependencies": {
"prop-types": ">=15",
"react": ">=15",
"semantic-ui-react": ">=0.75.0"
},
"eslintConfig": {
"extends": "./node_modules/kcd-scripts/eslint.js",
"rules": {
"no-unused-vars": [
"error",
{
"ignoreRestSiblings": true
}
],
"complexity": [
"error",
10
],
"import/no-unassigned-import": 0,
"no-console": 1
}
},
"eslintIgnore": [
"node_modules",
"coverage",
"dist",
"storybook-static",
"stories"
],
"repository": {
"type": "git",
"url": "https://github.com/arthurdenner/react-semantic-ui-datepickers.git"
},
"bugs": {
"url": "https://github.com/arthurdenner/react-semantic-ui-datepickers/issues"
},
"homepage": "https://github.com/arthurdenner/react-semantic-ui-datepickers#readme"
}