-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
55 lines (55 loc) · 1.3 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
{
"name": "toastmaker",
"version": "1.0.9",
"description": "ToastMaker is a light javascript library for showing toast notifications on web page",
"files": [
"dist/**/*",
"*.d.ts"
],
"main": "dist/toastmaker.js",
"types": "index.d.ts",
"scripts": {
"build": "gulp build",
"package": "gulp package",
"clean": "gulp clean",
"test": "mocha",
"coverage": "nyc --reporter=lcov npm run test",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vivekweb2013/toastmaker.git"
},
"author": "Vivek <[email protected]> (http://wirehall.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/vivekweb2013/toastmaker/issues"
},
"homepage": "https://toastmaker.wirehall.com",
"devDependencies": {
"chai": "^4.2.0",
"gulp": "^4.0.2",
"gulp-babel": "^8.0.0",
"gulp-clean": "^0.4.0",
"gulp-minify-css": "^1.2.4",
"gulp-rename": "^2.0.0",
"gulp-replace": "^1.0.0",
"gulp-uglify": "^3.0.2",
"gulp-zip": "^5.0.2",
"jsdom": "16.2.2",
"jsdom-global": "3.0.2",
"mocha": "^8.0.1",
"nyc": "^15.1.0"
},
"keywords": [
"toastmaker",
"toast",
"npm",
"package",
"module",
"lightweight",
"javascript",
"notification"
],
"dependencies": {}
}