forked from hperrin/svelte-material-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 2.46 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
{
"name": "svelte-material-ui",
"version": "2.0.0-beta.0",
"description": "Svelte Material UI Components",
"keywords": [
"svelte",
"svelte3",
"material-ui",
"material-design",
"material",
"svelte-components",
"sveltejs"
],
"scripts": {
"pages": "git checkout site -- && git rebase master && cd site && npm install && npm run export && cd .. && git add . && git commit -m 'chore: update built files' && git push origin $(git subtree split --prefix site/dist site):gh-pages --force && git reset --hard HEAD^ && git push --force origin site && git checkout master",
"test": "echo \"Error: no test specified\" && exit 1"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"files": [],
"repository": {
"type": "git",
"url": "git+https://github.com/hperrin/svelte-material-ui.git"
},
"author": "Hunter Perrin <[email protected]>",
"bugs": {
"url": "https://github.com/hperrin/svelte-material-ui/issues"
},
"license": "Apache-2.0",
"dependencies": {
"@smui/button": "2.0.0-beta.0",
"@smui/card": "2.0.0-beta.0",
"@smui/checkbox": "2.0.0-beta.0",
"@smui/chips": "2.0.0-beta.0",
"@smui/data-table": "2.0.0-beta.0",
"@smui/dialog": "2.0.0-beta.0",
"@smui/drawer": "2.0.0-beta.0",
"@smui/fab": "2.0.0-beta.0",
"@smui/floating-label": "2.0.0-beta.0",
"@smui/form-field": "2.0.0-beta.0",
"@smui/icon-button": "2.0.0-beta.0",
"@smui/image-list": "2.0.0-beta.0",
"@smui/line-ripple": "2.0.0-beta.0",
"@smui/linear-progress": "2.0.0-beta.0",
"@smui/list": "2.0.0-beta.0",
"@smui/menu": "2.0.0-beta.0",
"@smui/menu-surface": "2.0.0-beta.0",
"@smui/notched-outline": "2.0.0-beta.0",
"@smui/paper": "2.0.0-beta.0",
"@smui/radio": "2.0.0-beta.0",
"@smui/ripple": "2.0.0-beta.0",
"@smui/select": "2.0.0-beta.0",
"@smui/slider": "2.0.0-beta.0",
"@smui/snackbar": "2.0.0-beta.0",
"@smui/switch": "2.0.0-beta.0",
"@smui/tab": "2.0.0-beta.0",
"@smui/tab-bar": "2.0.0-beta.0",
"@smui/tab-indicator": "2.0.0-beta.0",
"@smui/tab-scroller": "2.0.0-beta.0",
"@smui/textfield": "2.0.0-beta.0",
"@smui/top-app-bar": "2.0.0-beta.0"
},
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"husky": "^4.3.6",
"lerna": "^3.22.1",
"svelte": "^3.31.0"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -e $HUSKY_GIT_PARAMS"
}
}
}