-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
45 lines (45 loc) · 1.18 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
{
"name": "svelte-bulma-components",
"description": "Bulma UI components for Svelte.js",
"version": "0.1.5",
"repository": {
"type": "git",
"url": "git+https://github.com/elcobvg/svelte-bulma-components.git"
},
"author": "Elco Brouwer von Gonzenbach <elco.brouwer@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/elcobvg/svelte-bulma-components/issues"
},
"homepage": "https://github.com/elcobvg/svelte-bulma-components#readme",
"devDependencies": {
"eslint": "^5.1.0",
"eslint-plugin-html": "^4.0.5",
"rollup": "^0.62.0",
"rollup-plugin-commonjs": "^9.1.3",
"rollup-plugin-node-resolve": "^3.3.0",
"rollup-plugin-svelte": "^4.2.1",
"standard": "^11.0.1",
"svelte": "^2.9.1"
},
"peerDependencies": {
"bulma": "^0.7.1",
"font-awesome": "^4.7.0"
},
"main": "dist/index.js",
"module": "dist/module.js",
"svelte": "src/index.js",
"svelte.root": "src",
"scripts": {
"lint": "standard --plugin html --ext .js,.html src/**/* --fix",
"dist": "rollup -c",
"prepublishOnly": "npm run dist"
},
"keywords": [
"javascript",
"svelte",
"bulma",
"svelte-components",
"ui"
]
}