forked from arfedulov/semantic-ui-calendar-react
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
89 lines (89 loc) · 2.64 KB
/
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
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
{
"name": "semantic-ui-calendar-react",
"version": "0.7.1",
"description": "date/time picker built from semantic-ui elements",
"main": "dist/index.js",
"scripts": {
"test": "npx tape -r babel-register ./test/test*.js | tap-spec",
"start": "npx webpack-dev-server",
"prebuild": "npx rimraf dist/*",
"build": "npx babel src -d dist",
"build:css": "npx mkdirp dist/css && uglifycss src/css/calendar.css > dist/css/calendar.min.css",
"build:ts": "npx cpy **/*.d.ts ../dist/ --cwd=src --parents",
"build:example:css": "npx cpy src/css/calendar.css example",
"postbuild": "npm run build:css && npm run build:ts && npm run build:example:css"
},
"auto-changelog": {
"output": "CHANGELOG.md",
"template": "keepachangelog",
"unreleased": true,
"commitLimit": false
},
"keywords": [
"semantic",
"react",
"calendar",
"datepicker"
],
"author": "Artem Fedulov <[email protected]>",
"homepage": "https://github.com/arfedulov/semantic-ui-calendar-react#readme",
"bugs": {
"url": "https://github.com/arfedulov/semantic-ui-calendar-react/issues"
},
"files": [
"src",
"dist"
],
"repository": {
"type": "git",
"url": "https://github.com/arfedulov/semantic-ui-calendar-react.git"
},
"license": "MIT",
"peerDependencies": {
"react": "^16.3.2",
"react-dom": "^16.3.2",
"semantic-ui-react": "^0.80.0"
},
"devDependencies": {
"@types/react": "^16.3.16",
"auto-changelog": "^1.7.2",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.3",
"babel-loader": "^7.1.4",
"babel-plugin-transform-react-handled-props": "^1.0.0",
"babel-plugin-transform-react-jsx-source": "^6.22.0",
"babel-plugin-transform-react-remove-prop-types": "^0.4.13",
"babel-preset-airbnb": "^2.4.0",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"babel-preset-stage-1": "^6.24.1",
"babel-register": "^6.26.0",
"cpy-cli": "^1.0.1",
"doubler": "^0.6.0",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"eslint": "^4.19.1",
"eslint-plugin-react": "^7.8.2",
"mkdirp": "^0.5.1",
"mockdate": "^2.0.2",
"react": "^16.4.0",
"react-dom": "^16.4.0",
"rimraf": "^2.6.2",
"semantic-ui-css": "^2.3.1",
"semantic-ui-react": "^0.80.2",
"tap-spec": "^5.0.0",
"tape": "^4.9.0",
"uglifycss": "0.0.29",
"webpack": "^4.9.1",
"webpack-cli": "^2.1.4",
"webpack-dev-server": "^3.1.4"
},
"dependencies": {
"classnames": "^2.2.5",
"lodash": "^4.17.10",
"moment": "^2.22.1",
"prop-types": "^15.6.1"
}
}