forked from sweetalert2/sweetalert2
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 2.89 KB
/
Copy pathpackage.json
File metadata and controls
97 lines (97 loc) · 2.89 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
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
95
96
97
{
"name": "sweetalert2",
"version": "7.12.12",
"repository": "sweetalert2/sweetalert2",
"homepage": "https://sweetalert2.github.io/",
"description": "A beautiful, responsive, customizable and accessible (WAI-ARIA) replacement for JavaScript's popup boxes, supported fork of sweetalert",
"main": "dist/sweetalert2.all.js",
"jsnext:main": "src/sweetalert2.js",
"types": "sweetalert2.d.ts",
"devDependencies": {
"babel-core": "^6.23.1",
"babel-plugin-array-includes": "^2.0.3",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-transform-object-assign": "^6.22.0",
"babel-preset-es2015": "^6.24.1",
"browser-sync": "^2.23.3",
"bundlesize": "^0.16.0",
"event-stream": "^3.3.4",
"execa": "^0.9.0",
"gulp": "^3.9.1",
"gulp-autoprefixer": "^4.1.0",
"gulp-clean-css": "^3.9.0",
"gulp-rename": "^1.2.2",
"gulp-rollup": "^2.16.2",
"gulp-sass": "^3.1.0",
"gulp-sass-lint": "^1.3.4",
"gulp-standard": "^8.0.0",
"gulp-tslint": "^8.1.2",
"gulp-typescript": "^4.0.0",
"gulp-uglify": "^3.0.0",
"promise-polyfill": "^7.0.2",
"mkdirp": "^0.5.1",
"pify": "^3.0.0",
"rimraf": "^2.6.2",
"rollup": "^0.56.1",
"rollup-plugin-babel": "^3.0.2",
"rollup-plugin-css-only": "^0.4.0",
"standard": "^8.0.0",
"testem": "^2.0.0",
"tslint": "^5.8.0",
"typescript": "^2.5.3",
"uglify-js": "^3.1.10"
},
"standard": {
"ignore": [
"dist/"
]
},
"greenkeeper": {
"ignore": [
"gulp-standard",
"standard"
]
},
"files": [
"dist",
"src",
"sweetalert2.d.ts"
],
"author": "Limon Monte <limon.monte@gmail.com> (https://limonte.github.io)",
"contributors": [
"Morgan Touverey-Quilling <mtouverey@alembic-dev.com> (https://github.com/toverux)",
"Johan Fagerberg (https://github.com/birjolaxew)",
"Sam Turrell <sam@samturrell.co.uk> (https://github.com/samturrell)",
"Joseph Schultz (https://github.com/acupajoe)",
"Matthew Francis Brunetti <zenflow87@gmail.com> (https://github.com/zenflow)",
"Patrick H. Lauke (https://github.com/patrickhlauke)"
],
"keywords": [
"sweetalert",
"sweetalert2",
"alert",
"prompt",
"confirm"
],
"engines": {
"node": ">=0.10.0"
},
"scripts": {
"start": "gulp watch",
"fix:lint": "standard --fix",
"test": "npm run build && npm run check",
"build": "gulp build",
"check": "npm run check:bundlesize && npm run check:tests && npm run check:ts",
"check:bundlesize": "bundlesize -f dist/sweetalert2.all.min.js -s 15kB",
"check:tests": "testem ci",
"check:ts": "tsc sweetalert2.d.ts",
"release": "node release"
},
"bugs": "https://github.com/sweetalert2/sweetalert2/issues",
"license": "MIT",
"collective": {
"type": "opencollective",
"url": "https://opencollective.com/SweetAlert2",
"logo": "https://opencollective.com/SweetAlert2/logo.txt"
}
}