-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
30 lines (30 loc) · 878 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
{
"name": "favicon-notification",
"version": "0.1.4",
"description": "A small script to add notification bubble to favicon",
"main": "src/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "npm run minify & npm run copy",
"minify": "uglifyjs src/index.js -cm -o dist/favicon-notification.min.js -r 'require,exports,define'",
"copy": "cp src/index.js dist/favicon-notification.js"
},
"keywords": [
"favicon",
"notification",
"bubble"
],
"repository": {
"type": "git",
"url": "https://github.com/igorprado/favicon-notification"
},
"bugs": {
"url": "https://github.com/igorprado/favicon-notification/issues"
},
"homepage": "https://github.com/igorprado/favicon-notification",
"author": "Igor Prado",
"license": "MIT",
"devDependencies": {
"uglify-js": "^2.4.23"
}
}