-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.04 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
{
"name": "bs-notifier",
"version": "0.3.0",
"author": {
"name": "Hidenao Miyamoto"
},
"description": "Growl-like notification plugin",
"main": "js/bs-notifier.js",
"files": [
"css",
"js",
"LICENSE.txt",
"README.md"
],
"devDependencies": {
"bootstrap-sass": "^3.4.3",
"cssnano": "^5.1.13",
"livereload": "^0.9.3",
"npm-run-all": "^4.0.2",
"postcss-cli": "^10.0.0",
"rollup": "^2.79.1",
"rollup-plugin-terser": "^7.0.2",
"sass": "^1.55.0",
"terser": "^5.15.1"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://[email protected]/mymth/bs-notifier.git"
},
"scripts": {
"build": "rollup -c",
"dev": "rollup -c --watch",
"reload": "livereload 'js/bs-notifier.js, test/' -d",
"watch": "npm-run-all --parallel reload dev",
"sass": "sass --precision 8 --no-source-map ./sass/bs-notifier.scss ./css/bs-notifier.css",
"postcss": "postcss ./css/bs-notifier.css > ./css/bs-notifier.min.css",
"build-css": "npm-run-all sass postcss"
}
}