forked from YePpHa/preact-material-components
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
103 lines (103 loc) · 3.01 KB
/
Copy pathpackage.json
File metadata and controls
103 lines (103 loc) · 3.01 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
100
101
102
103
{
"name": "preact-material-components",
"version": "1.2.0",
"description": "preact wrapper for \"Material Components for the web\"",
"module": "index.js",
"main": "dist/index.js",
"scripts": {
"build": "node ./compileComponents.js && webpack",
"prepublishOnly": "npm run build && npm run test",
"test": "npm run build && npm run prettier",
"lint": "eslint index.js */*.jsx",
"lint-staged": "lint-staged",
"prettier": "prettier -l index.js */*.jsx",
"prettier:write": "prettier --write index.js */*.jsx"
},
"repository": {
"type": "git",
"url": "git+https://github.com/prateekbh/preact-material-components.git"
},
"keywords": [
"preact",
"preact components",
"material components",
"material design"
],
"author": {
"name": "Prateek Bhatnagar",
"email": "prateek89born@gmail.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/prateekbh/preact-material-components/issues"
},
"homepage": "https://github.com/prateekbh/preact-material-components#readme",
"dependencies": {
"@material/animation": "^0.4.0",
"@material/auto-init": "^0.2.0",
"@material/base": "^0.2.5",
"@material/button": "^0.7.0",
"@material/card": "^0.2.9",
"@material/checkbox": "^0.4.7",
"@material/dialog": "^0.4.4",
"@material/drawer": "^0.5.8",
"@material/elevation": "^0.1.12",
"@material/fab": "^0.5.1",
"@material/form-field": "^0.2.16",
"@material/grid-list": "^0.2.12",
"@material/icon-toggle": "^0.1.21",
"@material/layout-grid": "^0.4.4",
"@material/linear-progress": "^0.1.10",
"@material/list": "^0.2.19",
"@material/menu": "^0.4.7",
"@material/radio": "^0.2.14",
"@material/ripple": "^0.8.7",
"@material/rtl": "^0.1.8",
"@material/select": "^0.3.17",
"@material/selection-control": "^0.1.2",
"@material/slider": "^0.2.6",
"@material/snackbar": "^0.4.0",
"@material/switch": "^0.1.14",
"@material/tabs": "^0.3.0",
"@material/textfield": "^0.4.1",
"@material/theme": "^0.3.1",
"@material/toolbar": "^0.4.10",
"@material/typography": "^0.3.0",
"material-components-web": "0.21.1"
},
"peerDependencies": {
"preact": "*"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-eslint": "^8.0.0",
"babel-loader": "^7.1.2",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-react-jsx": "^6.24.1",
"babel-preset-es2015": "^6.24.1",
"clean-webpack-plugin": "^0.1.16",
"cp": "^0.2.0",
"eslint": "^4.5.0",
"eslint-config-prettier": "^2.4.0",
"eslint-plugin-prettier": "^2.2.0",
"glob-copy": "^0.1.0",
"lint-staged": "^4.0.4",
"mkdirp": "^0.5.1",
"pre-commit": "^1.2.2",
"preact": "^8.2.5",
"prettier": "^1.6.1",
"webpack": "^3.5.5",
"webpack-shell-plugin": "^0.5.0"
},
"lint-staged": {
"index.js": [
"prettier --write",
"git add"
],
"**/*.jsx": [
"prettier --write",
"git add"
]
},
"pre-commit": "lint-staged"
}