forked from sweetalert2/sweetalert2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 2.34 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
{
"name": "sweetalert2",
"version": "6.11.4",
"repository": "limonte/sweetalert2",
"homepage": "https://limonte.github.io/sweetalert2/",
"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": "latest",
"babel-plugin-array-includes": "latest",
"babel-plugin-external-helpers": "latest",
"babel-plugin-transform-object-assign": "latest",
"babel-preset-es2015": "latest",
"gulp": "latest",
"gulp-autoprefixer": "latest",
"gulp-clean-css": "^3.9.0",
"gulp-rename": "latest",
"gulp-rollup": "latest",
"gulp-sass": "latest",
"gulp-sass-lint": "latest",
"gulp-standard": "^8.0.0",
"gulp-tslint": "^8.1.2",
"gulp-typescript": "^3.2.3",
"gulp-uglify": "latest",
"rollup": "latest",
"rollup-plugin-babel": "^3.0.2",
"rollup-plugin-css-only": "^0.2.0",
"standard": "^8.0.0",
"testem": "latest",
"tslint": "^5.8.0",
"typescript": "^2.5.3",
"uglify-js": "latest"
},
"standard": {
"ignore": [
"dist/"
],
"global": [
"MutationObserver"
]
},
"files": [
"dist",
"src",
"sweetalert2.d.ts"
],
"author": "Limon Monte <[email protected]> (https://limonte.github.io)",
"contributors": [
"Morgan Touverey-Quilling <[email protected]> (https://github.com/toverux)",
"Johan Fagerberg (https://github.com/birjolaxew)",
"Sam Turrell <[email protected]> (https://github.com/samturrell)",
"Joseph Schultz (https://github.com/acupajoe)",
"Patrick H. Lauke (https://github.com/patrickhlauke)"
],
"keywords": [
"sweetalert",
"sweetalert2",
"alert",
"prompt"
],
"engines": {
"node": ">=0.10.0"
},
"scripts": {
"test": "testem ci",
"lint-dts": "tslint sweetalert2.d.ts --format verbose",
"check-dts": "tsc sweetalert2.d.ts && npm run lint-dts",
"assume-dist-unchanged": "git ls-files dist | tr '\\n' ' ' | xargs git update-index --assume-unchanged",
"no-assume-dist-unchanged": "git ls-files dist | tr '\\n' ' ' | xargs git update-index --no-assume-unchanged"
},
"bugs": "https://github.com/limonte/sweetalert2/issues",
"license": "MIT"
}