This repository was archived by the owner on Oct 1, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.55 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.55 KB
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": "msg-notify",
"version": "1.1.3",
"description": "Display notifications to your app",
"main": "dist/index.js",
"browser": "dist/notify-umd.js",
"files": [
"dist/notify-umd.js",
"dist/notify.css",
"lib/",
"README.md"
],
"scripts": {
"start": "webpack-dev-server --hot",
"build-demo": "webpack",
"build": "npm run build-main && npm run build-umd && npm run build-style",
"build-main": "rollup --config rollup.config.js --format cjs --output dist/index.js",
"build-umd": "rollup --config rollup.config.js --format umd --name msgNotify --output dist/notify-umd.js",
"build-style": "stylus lib/notify.styl -o dist",
"prepublish": "npm run build",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": ["notify", "notification", "toast", "react-notify", "pure-notify", "message"],
"author": "Brook Yang",
"license": "ISC",
"devDependencies": {
"babel-cli": "^6.23.0",
"babel-loader": "^6.4.0",
"babel-preset-env": "^1.2.1",
"css-loader": "^0.27.1",
"html-webpack-plugin": "^2.28.0",
"rollup": "^0.41.5",
"rollup-plugin-babel": "^2.7.1",
"style-loader": "^0.13.2",
"stylus": "^0.54.5",
"stylus-loader": "^3.0.1",
"vue": "^2.2.2",
"webpack": "^2.2.1",
"webpack-dev-server": "^2.4.1"
},
"dependencies": {},
"repository": {
"type": "git",
"url": "git+https://github.com/yangg/msg-notify.git"
},
"bugs": {
"url": "https://github.com/yangg/msg-notify/issues"
},
"homepage": "https://github.com/yangg/msg-notify#readme"
}