-
-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpackage.json
81 lines (81 loc) · 2.16 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
{
"name": "material-ui-password-field",
"version": "2.1.2",
"description": "A password field using Material-UI.",
"main": "lib/PasswordField.js",
"scripts": {
"test": "standard && jest",
"test:coverage": "jest --coverage && cat ./coverage/lcov.info | coveralls",
"test:unit": "jest",
"build": "rm -rf lib && babel src -d lib",
"prepare": "rm -rf lib && babel src -d lib",
"storybook": "start-storybook -p 6006",
"styleguide": "mui-styleguidist server",
"styleguide:build": "mui-styleguidist build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TeamWertarbyte/material-ui-password-field.git"
},
"keywords": [
"react",
"material",
"password",
"field",
"input"
],
"author": "Wertarbyte <[email protected]> (https://wertarbyte.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/TeamWertarbyte/material-ui-password-field/issues"
},
"homepage": "https://github.com/TeamWertarbyte/material-ui-password-field#readme",
"devDependencies": {
"@material-ui/core": "^1.0.0",
"@storybook/addon-actions": "^3.4.5",
"@storybook/react": "^3.4.5",
"@wertarbyte/mui-styleguidist-wrapper": "^0.1.3",
"babel-cli": "^6.14.0",
"babel-core": "^6.8.0",
"babel-eslint": "^8.0.1",
"babel-jest": "^21.2.0",
"babel-preset-es2015": "^6.14.0",
"babel-preset-react": "^6.11.1",
"babel-preset-stage-0": "^6.5.0",
"enzyme": "^3.1.0",
"enzyme-adapter-react-16": "^1.15.4",
"enzyme-to-json": "^3.1.4",
"jest": "^21.2.1",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"standard": "^11.0.1"
},
"peerDependencies": {
"@material-ui/core": "^1.0.0",
"react": "^16.3.0"
},
"dependencies": {
"@material-ui/icons": "^1.0.0",
"material-ui-toggle-icon": "^1.0.6",
"prop-types": "^15.5.10"
},
"standard": {
"parser": "babel-eslint"
},
"jest": {
"setupFiles": [
"./test/shim.js",
"./test/jestsetup.js"
],
"snapshotSerializers": [
"enzyme-to-json/serializer"
],
"coveragePathIgnorePatterns": [
"<rootDir>/test"
],
"roots": [
"src",
"test"
]
}
}