forked from avil13/vue-sweetalert2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.05 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
{
"name": "vue-sweetalert2",
"version": "1.2.4",
"description": "Simple Vue sweetalert2 package",
"main": "src/index.js",
"scripts": {
"test": "jest"
},
"keywords": [
"sweetalert",
"sweetalert2",
"alert",
"prompt"
],
"author": "Aleksey Pivkin @avil13",
"license": "MIT",
"dependencies": {
"sweetalert2": "file:modules/sweetalert2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/avil13/vue-sweetalert2.git"
},
"devDependencies": {
"babel-jest": "^22.0.4",
"babel-preset-env": "^1.6.1",
"identity-obj-proxy": "^3.0.0",
"jest": "^22.0.4",
"vue": "^2.5.13"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"css"
],
"transform": {
"^.+\\.js$": "<rootDir>/node_modules/babel-jest"
},
"moduleNameMapper": {
"^.+\\.css$": "identity-obj-proxy"
},
"mapCoverage": true
}
}