This repository was archived by the owner on Oct 5, 2022. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.73 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.73 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
51
52
53
54
55
56
57
58
59
60
{
"name": "macosnotif",
"version": "0.1.1",
"description": "A simple Javascript plugin to create simulated macOS notifications on your website.",
"browser": "dist/macOSNotif.min.js",
"style": "dist/macOSNotif.min.css",
"files": [
"LICENSE",
"package.json",
"README.md",
"dist/**/*"
],
"repository": {
"type": "git",
"url": "git+https://github.com/MattIPv4/macOSNotifJS.git"
},
"bugs": {
"url": "https://github.com/MattIPv4/macOSNotifJS/issues"
},
"homepage": "https://macosnotif.js.org/",
"keywords": [],
"author": {
"name": "Matt (IPv4) Cowley",
"email": "me@mattcowley.co.uk",
"url": "https://mattcowley.co.uk/"
},
"license": "AGPL-3.0-only",
"browserslist": [
"last 1 version",
"> 0.25%, not dead"
],
"scripts": {
"build": "node build/preflight.js && webpack && node build/postflight.js"
},
"devDependencies": {
"@babel/core": "^7.4.5",
"@babel/plugin-proposal-object-rest-spread": "^7.4.4",
"@babel/plugin-transform-template-literals": "^7.4.4",
"@babel/polyfill": "^7.4.4",
"@babel/preset-env": "^7.4.5",
"@wessberg/color": "^1.0.5",
"babel-loader": "^8.0.6",
"babel-plugin-async-to-promises": "^1.0.5",
"babel-plugin-transform-es3-member-expression-literals": "^6.22.0",
"babel-plugin-transform-es3-property-literals": "^6.22.0",
"chalk": "^2.4.2",
"core-js": "2.x",
"css-loader": "^2.1.1",
"ejs": "^3.1.7",
"file-loader": "^4.0.0",
"fontmin": "^0.9.7-beta",
"html-loader": "^1.0.0-alpha.0",
"jsdoc-api": "^5.0.1",
"mini-css-extract-plugin": "^0.7.0",
"optimize-css-assets-webpack-plugin": "^6.0.1",
"url-loader": "^2.0.0",
"webpack": "^4.33.0",
"webpack-cli": "^3.3.2"
}
}