-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.3 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
{
"name": "@myfrom/notifier",
"version": "2.0.1",
"description": "A lightweight library to show paper-toast and paper-dialog alerts easily.",
"main": "notifier.js",
"directories": {
"doc": "docs"
},
"scripts": {
"test": "echo \"No test specified\" && exit 0",
"build-docs": "npm run cleanup && jsdoc notifier.js -c jsdoc.json && ./node_modules/.bin/webpack",
"cleanup": "rm -rf ./docs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/myfrom/Notifier.git"
},
"keywords": [
"dialog",
"toast",
"alert",
"confirm",
"polymer",
"webcomponents",
"paper"
],
"author": "toast",
"license": "MIT",
"bugs": {
"url": "https://github.com/myfrom/Notifier/issues"
},
"homepage": "https://github.com/myfrom/Notifier",
"devDependencies": {
"@babel/core": "^7.1.2",
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
"@babel/polyfill": "^7.0.0",
"@babel/preset-env": "^7.1.0",
"jsdoc": "^3.5.5",
"webpack": "^4.24.0",
"webpack-cli": "^3.1.2"
},
"dependencies": {
"@polymer/neon-animation": "3",
"@polymer/paper-button": "3",
"@polymer/paper-dialog": "3",
"@polymer/paper-dialog-scrollable": "3",
"@polymer/paper-toast": "3",
"@polymer/polymer": "3",
"babel-loader": "^8.0.4"
}
}