forked from hperrin/svelte-material-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
92 lines (92 loc) · 3.26 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
{
"name": "svelte-material-ui",
"version": "5.0.0-beta.7",
"description": "Svelte Material UI Components",
"keywords": [
"svelte",
"svelte3",
"material-ui",
"material-design",
"material",
"svelte-components",
"sveltejs"
],
"scripts": {
"bootstrap": "lerna bootstrap --hoist --nohoist \"@tsconfig/svelte\"",
"check": "lerna exec svelte-check",
"clean": "lerna run clean && npm run clean:css",
"clean:css": "test -f bare.css && rm -r bare.css || true",
"lint": "prettier --ignore-path .gitignore --check --plugin-search-dir=. .",
"format": "prettier --ignore-path .gitignore --write --plugin-search-dir=. .",
"pages": "npm run bootstrap && npm run pages:build && npm run pages:push",
"pages:build": "cd packages/site && npm run build && cd ../..",
"pages:push": "git add -f packages/site/build && git commit -m 'chore: update built files' && git push origin $(git subtree split --prefix packages/site/build master):gh-pages --force && git reset --hard HEAD^",
"prepare": "husky install && npm run build:css",
"build:css": "smui-theme compile bare.css",
"test": "echo \"Error: no test specified\" && exit 1"
},
"files": [
"bare.css"
],
"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/banner": "5.0.0-beta.7",
"@smui/button": "5.0.0-beta.7",
"@smui/card": "5.0.0-beta.7",
"@smui/checkbox": "5.0.0-beta.7",
"@smui/chips": "5.0.0-beta.7",
"@smui/circular-progress": "5.0.0-beta.7",
"@smui/common": "5.0.0-beta.7",
"@smui/data-table": "5.0.0-beta.7",
"@smui/dialog": "5.0.0-beta.7",
"@smui/drawer": "5.0.0-beta.7",
"@smui/fab": "5.0.0-beta.7",
"@smui/floating-label": "5.0.0-beta.7",
"@smui/form-field": "5.0.0-beta.7",
"@smui/icon-button": "5.0.0-beta.7",
"@smui/image-list": "5.0.0-beta.7",
"@smui/layout-grid": "5.0.0-beta.7",
"@smui/line-ripple": "5.0.0-beta.7",
"@smui/linear-progress": "5.0.0-beta.7",
"@smui/list": "5.0.0-beta.7",
"@smui/menu": "5.0.0-beta.7",
"@smui/menu-surface": "5.0.0-beta.7",
"@smui/notched-outline": "5.0.0-beta.7",
"@smui/paper": "5.0.0-beta.7",
"@smui/radio": "5.0.0-beta.7",
"@smui/ripple": "5.0.0-beta.7",
"@smui/segmented-button": "5.0.0-beta.7",
"@smui/select": "5.0.0-beta.7",
"@smui/slider": "5.0.0-beta.7",
"@smui/snackbar": "5.0.0-beta.7",
"@smui/switch": "5.0.0-beta.7",
"@smui/tab": "5.0.0-beta.7",
"@smui/tab-bar": "5.0.0-beta.7",
"@smui/tab-indicator": "5.0.0-beta.7",
"@smui/tab-scroller": "5.0.0-beta.7",
"@smui/textfield": "5.0.0-beta.7",
"@smui/tooltip": "5.0.0-beta.7",
"@smui/top-app-bar": "5.0.0-beta.7",
"@smui/touch-target": "5.0.0-beta.7"
},
"devDependencies": {
"@commitlint/cli": "^13.1.0",
"@commitlint/config-conventional": "^13.1.0",
"husky": "^7.0.2",
"lerna": "^4.0.0",
"prettier": "~2.4.1",
"prettier-plugin-svelte": "^2.4.0",
"sass": "~1.39.2",
"smui-theme": "file:packages/smui-theme",
"svelte": "^3.35.0",
"svelte-check": "^2.2.6"
}
}