-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
59 lines (59 loc) · 1.6 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
{
"name": "preact-mdc",
"version": "1.0.0",
"description": "Preact wrapper for Material Components Web",
"main": "index.js",
"repository": "https://github.com/dramloc/preact-mdc",
"author": "Antoine Colmard <a.colmard@gmail.com>",
"license": "MIT",
"scripts": {
"lint": "eslint .",
"test": "jest"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-jest": "^23.0.1",
"babel-plugin-transform-react-jsx": "^6.24.1",
"babel-preset-env": "^1.7.0",
"eslint": "^4.19.1",
"eslint-config-synacor": "^3.0.1",
"eslint-plugin-import": "^2.12.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^23.0.1",
"preact-render-spy": "^1.3.0",
"preact-render-to-string": "^3.7.0",
"regenerator-runtime": "^0.11.1"
},
"dependencies": {
"@material/checkbox": "^0.35.0",
"@material/chips": "^0.35.1",
"@material/dialog": "^0.35.2",
"@material/drawer": "^0.35.0",
"@material/floating-label": "^0.35.2",
"@material/form-field": "^0.35.0",
"@material/icon-button": "^0.36.0-0",
"@material/line-ripple": "^0.35.0",
"@material/linear-progress": "^0.35.0",
"@material/menu": "^0.35.0",
"@material/notched-outline": "^0.35.0",
"@material/radio": "^0.35.0",
"@material/ripple": "^0.35.0",
"@material/select": "^0.35.2",
"@material/slider": "^0.35.0",
"@material/snackbar": "^0.35.0",
"@material/tabs": "^0.35.0",
"@material/textfield": "^0.35.2",
"@material/top-app-bar": "^0.35.2",
"bem-classnames": "^1.0.7",
"preact": "^8.2.9"
},
"jest": {
"transformIgnorePatterns": [
"/node_modules/(?!@material)"
],
"collectCoverage": true,
"collectCoverageFrom": [
"src/**/*.js"
]
}
}