-
-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpackage.json
96 lines (96 loc) · 2.45 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
90
91
92
93
94
95
96
{
"name": "material-ui-time-picker",
"version": "1.3.0",
"description": "A time picker for material-ui 1.0-beta.",
"main": "lib/index.js",
"files": [
"lib/**/*.js",
"README.md",
"LICENSE",
"demo.gif"
],
"scripts": {
"test": "standard && jest",
"test:coverage": "jest --coverage && cat ./coverage/lcov.info | coveralls",
"test:unit": "jest",
"build": "babel src -d lib --ignore '**/*.spec.js'",
"prepublish": "babel src -d lib --ignore '**/*.spec.js'",
"storybook": "start-storybook -p 6006",
"styleguide": "styleguidist server",
"styleguide:build": "styleguidist build",
"styleguide:deploy": "npm run styleguide:build && gh-pages -d styleguide"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TeamWertarbyte/material-ui-time-picker.git"
},
"keywords": [
"material-ui",
"material",
"design",
"timepicker",
"time",
"form",
"react",
"ui"
],
"author": "Wertarbyte",
"license": "MIT",
"bugs": {
"url": "https://github.com/TeamWertarbyte/material-ui-time-picker/issues"
},
"homepage": "https://github.com/TeamWertarbyte/material-ui-time-picker#readme",
"devDependencies": {
"@babel/cli": "^7.4.3",
"@babel/core": "^7.4.3",
"@babel/plugin-proposal-class-properties": "^7.4.0",
"@babel/preset-env": "^7.4.3",
"@babel/preset-react": "^7.0.0",
"@material-ui/core": "^3.9.3",
"@storybook/addon-actions": "^3.4.5",
"@storybook/react": "^3.4.5",
"babel-eslint": "^8.2.3",
"coveralls": "^3.0.0",
"enzyme": "^3.9.0",
"enzyme-adapter-react-16": "^1.12.1",
"enzyme-to-json": "^3.3.5",
"gh-pages": "^1.0.0",
"jest": "^24.7.1",
"mockdate": "^2.0.2",
"react": "^16.3.2",
"react-dom": "^16.3.2",
"react-styleguidist": "^7.0.14",
"react-test-renderer": "^16.8.6",
"standard": "^11.0.1",
"webpack": "^3.7.1",
"webpack-blocks": "^1.0.0-rc"
},
"jest": {
"setupFiles": [
"./test/shim.js",
"./test/jestsetup.js"
],
"snapshotSerializers": [
"enzyme-to-json/serializer"
],
"coveragePathIgnorePatterns": [
"<rootDir>/test"
],
"roots": [
"src",
"test"
],
"testURL": "http://localhost/"
},
"standard": {
"parser": "babel-eslint"
},
"dependencies": {
"classnames": "^2.2.5",
"prop-types": "^15.7.2"
},
"peerDependencies": {
"@material-ui/core": "^1.0.0 || ^3.0.0",
"react": "^16.3.0"
}
}