-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
45 lines (45 loc) · 1.14 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": "flashy-js",
"version": "0.4.0",
"description": "Flashy is a lightweight, 0 dependency library that creates beatiful flash messages, using vanilla web components.",
"main": "dist/flashy.js",
"unpkg": "dist/flashy.min.js",
"scripts": {
"test": "echo \"test\"",
"lint": "eslint . --ext .js",
"lint-fix": "eslint . --ext .js --fix",
"build": "rollup -c"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alex-zissis/flashy.git"
},
"keywords": [
"flashy",
"flash",
"messages",
"web-components",
"web",
"components"
],
"author": "Alex Zissis <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/alex-zissis/flashy/issues"
},
"homepage": "https://alex-zissis.github.io/flashy",
"devDependencies": {
"@babel/core": "^7.4.5",
"@babel/preset-env": "^7.4.5",
"eslint": "^5.16.0",
"eslint-config-prettier": "^4.3.0",
"eslint-plugin-prettier": "^3.1.0",
"prettier": "^1.17.1",
"rollup": "^1.12.4",
"rollup-plugin-babel": "^4.3.2",
"rollup-plugin-babel-minify": "^8.0.0"
},
"files": [
"dist"
]
}