-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.05 KB
/
Copy pathpackage.json
File metadata and controls
87 lines (87 loc) · 2.05 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
{
"name": "@xedi/cypress-mailtrap",
"version": "1.2.1",
"description": "Cypress Commands for interacting with Mailtrap.io",
"main": "lib/cypress-mailtrap.min.js",
"scripts": {
"test": "mocha --opts ./mocha.opts test/*.spec.js",
"build": "gulp build",
"clean": "gulp clean",
"lint": "gulp lint",
"prepublishOnly": "scripts/prepublish.sh",
"postpublish": "scripts/postpublish.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/xedi/cypress-mailtrap.git"
},
"keywords": [
"cypress",
"testing",
"mailtrap"
],
"author": "Chris Smith <chris@xedi.com>",
"license": "ISC",
"bugs": {
"url": "https://github.com/xedi/cypress-mailtrap/issues"
},
"homepage": "https://github.com/xedi/cypress-mailtrap#readme",
"publishConfig": {
"registry": "http://npm.pkg.github.com/"
},
"dependencies": {
"@xedi/mailtrap": "^1.2.5"
},
"devDependencies": {
"@babel/core": "^7.6.0",
"@babel/plugin-transform-modules-umd": "^7.0.0",
"@babel/preset-env": "^7.6.0",
"@babel/register": "^7.6.0",
"babel-plugin-add-module-exports": "^1.0.0",
"babel-plugin-istanbul": "^5.0.0",
"babelify": "^10.0.0",
"braces": ">=2.3.1",
"browserify": "^16.0.0",
"del": "^2.2.0",
"diff": ">=3.5.0",
"eslint": "^4.18.2",
"eslint-config-google": "^0.7.0",
"eslint-plugin-mocha": "^4.7.0",
"growl": ">=1.10.0",
"gulp": "^4.0.0",
"gulp-babel": "^8.0.0",
"gulp-eslint": "^6.0.0",
"gulp-rename": "^1.2.2",
"gulp-sourcemaps": "^2.2.0",
"gulp-uglify": "^3.0.0",
"jsdoc": "^3.4.0",
"mocha": "^3.1.2",
"must": "^0.13.4",
"nock": "^10.0.6",
"vinyl-buffer": "^1.0.0",
"vinyl-source-stream": "^2.0.0"
},
"files": [
"lib/*"
],
"babel": {
"presets": [
"@babel/env"
],
"plugins": [
[
"@babel/plugin-transform-modules-umd"
]
],
"env": {
"development": {
"sourceMaps": "inline"
},
"tests": {
"plugins": [
"istanbul"
]
}
}
}
}