-
Notifications
You must be signed in to change notification settings - Fork 513
/
package.json
79 lines (79 loc) · 2.16 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "pnotify",
"version": "5.2.0",
"description": "Beautiful notifications and prompts.",
"keywords": [
"notice",
"notices",
"notification",
"notifications",
"alert",
"alerts",
"web notification",
"web notifications",
"prompt",
"prompts",
"toast",
"toasts",
"snackbar",
"snackbars",
"dialog",
"dialogs",
"non blocking",
"notify",
"material",
"material ui",
"modal",
"modalish"
],
"homepage": "https://github.com/sciactive/pnotify",
"bugs": {
"url": "https://github.com/sciactive/pnotify/issues"
},
"license": "Apache-2.0",
"author": "Hunter Perrin",
"scripts": {
"build-dev": "lerna run --parallel build-dev",
"build": "lerna run --parallel build",
"watch": "lerna run --parallel watch",
"deploy": "git checkout gh-pages && git merge develop && rm -rf ./packages/*/dist/ && npm run build-dev && git add . && git commit -m 'chore: update built files' && git push && git checkout develop",
"format": "prettier --write --ignore-unknown .",
"lint": "prettier --check --ignore-unknown .",
"bootstrap": "lerna bootstrap",
"prepare": "husky install && npm run bootstrap && npm run lint"
},
"files": [],
"repository": {
"type": "git",
"url": "https://github.com/sciactive/pnotify.git"
},
"devDependencies": {
"@commitlint/cli": "^17.2.0",
"@commitlint/config-conventional": "^17.2.0",
"husky": "^8.0.2",
"lerna": "^6.0.3",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"prettier-plugin-svelte": "^2.8.1",
"svelte": "^3.53.1"
},
"dependencies": {
"@pnotify/animate": "5.2.0",
"@pnotify/bootstrap3": "5.2.0",
"@pnotify/bootstrap4": "5.2.0",
"@pnotify/confirm": "5.2.0",
"@pnotify/core": "5.2.0",
"@pnotify/countdown": "5.2.0",
"@pnotify/desktop": "5.2.0",
"@pnotify/font-awesome4": "5.2.0",
"@pnotify/font-awesome5": "5.2.0",
"@pnotify/font-awesome5-fix": "5.2.0",
"@pnotify/glyphicon": "5.2.0",
"@pnotify/mobile": "5.2.0",
"@pnotify/paginate": "5.2.0",
"@pnotify/reference": "5.2.0"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
}
}