-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
94 lines (94 loc) · 2.83 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "toaste-notifier",
"version": "1.0.0-alpha4",
"description": "A JavaScript Library to display customizable toast notifications.",
"main": "dist/toaste-notifier.cjs",
"unpkg": "dist/toaste-notifier.js",
"jsdelivr": "dist/toaste-notifier.js",
"files": [
"src",
"dist/*.js",
"dist/css/*.css",
"dist/scss/*.scss"
],
"repository": "https://github.com/Darker21/ToastE.git",
"scripts": {
"dev": "rollup -w -c build/config.js --environment TARGET:web-umd-dev",
"dev:cjs": "rollup -w -c build/config.js --environment TARGET:web-cjs",
"bundle": "node build/build.js",
"build": "npm run bundle && webpack && npm run docs",
"build:umd": "rollup -w -c build/config.js --environment TARGET:web-umd-dev",
"build:amd": "webpack",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "test run e2e && npm run unit",
"unit": "jest tests/unit/",
"e2e": "node tests/e2e/samples.js test",
"e2e:update": "node test/e2e/samples.js update",
"build:samples": "node samples/source/index.js generate",
"docs": "npx jsdoc -c .jsdoc.config.json"
},
"keywords": [
"Toast",
"Toast-Notifications",
"Notifications",
"JavaScript"
],
"devDependencies": {
"@babel/core": "^7.8.7",
"@babel/eslint-parser": "^7.16.5",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/preset-env": "^7.8.7",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.1.3",
"@rollup/plugin-replace": "^2.4.2",
"@rollup/plugin-strip": "^1.3.3",
"babel-jest": "27.3.1",
"babel-loader": "8.0.6",
"babel-plugin-istanbul": "6.0.0",
"chalk": "3.0.0",
"css-loader": "3.4.1",
"eslint": "8.2.0",
"eslint-config-prettier": "6.9.0",
"eslint-plugin-import": "2.25.4",
"eslint-plugin-prettier": "3.1.2",
"eslint-plugin-promise": "4.2.1",
"eslint-webpack-plugin": "^3.1.1",
"fs-extra": "8.1.0",
"jest": "27.3.1",
"nunjucks": "3.2.4",
"nyc": "15.0.0",
"pixelmatch": "5.1.0",
"pngjs": "3.4.0",
"postcss": "^8.3.11",
"prettier": "1.19.1",
"puppeteer": "2.0.0",
"puppeteer-cluster": "0.18.0",
"rollup": "^2.64.0",
"rollup-plugin-copy-glob": "0.3.2",
"rollup-plugin-postcss": "4.0.1",
"rollup-plugin-svgo": "^2.0.0-beta.1",
"rollup-plugin-terser": "7.0.2",
"style-loader": "1.1.2",
"svg-inline-loader": "0.8.0",
"terser": "5.14.2",
"tslint": "5.12.1",
"typescript": "3.2.2",
"webpack": "5.3.2",
"webpack-bundle-analyzer": "^4.5.0",
"webpack-cli": "4.9.1"
},
"author": "Jacob Darker",
"license": "MIT",
"licenses": [
{
"type": "MIT",
"url": "http://www.opensource.org/licenses/mit-license.php"
}
],
"bugs": {
"url": "https://github.com/Darker21/ToastE/issues"
},
"private": false
}