-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
33 lines (33 loc) · 976 Bytes
/
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
{
"name": "svelte-material-components",
"version": "0.1.9",
"description": "Svelte wrapper for \"Material Components for the web\"",
"svelte.root": "src/",
"scripts": {
"prepublishOnly": "npm run build",
"build": "rm -Rf dist && rollup -c rollup.config.js && node update-main.js dist",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Fernando Jorge Mota <contato@fjorgemota.com>",
"license": "MIT",
"main": "dist/index.js",
"module": "dist/index.mjs",
"sideEffects": false,
"repository": {
"type": "git",
"url": "https://github.com/fjorgemota/svelte-material-components"
},
"devDependencies": {
"rollup": "^0.64.1",
"rollup-plugin-commonjs": "^9.1.5",
"rollup-plugin-node-resolve": "^3.3.0",
"rollup-plugin-svelte": "^4.2.1",
"svelte": "^2.11.0"
},
"peerDependencies": {
"material-components-web": "^0.38.2"
},
"dependencies": {
"material-components-web": "^0.38.2"
}
}