forked from rfoel/bulma-toast
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.12 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
{
"name": "bulma-toast",
"version": "1.5.0-es5",
"description": "Bulma's pure JavaScript extension to display toasts",
"main": "dist/bulma-toast.cjs.js",
"module": "dist/bulma-toast.esm.js",
"browser": "dist/bulma-toast.min.js",
"scripts": {
"dev": "rollup -c -w",
"build": "rollup -c",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rfoel/bulma-toast.git"
},
"keywords": [
"Bulma",
"bulma",
"extensions",
"bulma.io"
],
"author": "@rfoel <[email protected]>",
"contributors": [
{
"email": "[email protected]",
"name": "Gabriel Paul \"Cley Faye\" Risterucci"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/rfoel/bulma-toast/issues"
},
"homepage": "https://rfoel.com/bulma-toast",
"devDependencies": {
"@babel/core": "^7.2.0",
"@babel/preset-env": "^7.2.0",
"jest": "^23.6.0",
"rollup": "^1.2.2",
"rollup-plugin-babel": "^4.0.3",
"rollup-plugin-babel-minify": "^7.0.0"
},
"files": [
"dist",
"src",
"LICENSE",
"README.md"
],
"types": "index.d.ts"
}