-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
92 lines (92 loc) · 2.16 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
{
"name": "@xedi/mailtrap",
"version": "1.2.7",
"description": "API Wrapper for Mailtrap.io",
"main": "dist/Mailtrap.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/libraries-js-mailtrap.git"
},
"keywords": [
"api",
"api-wrapper",
"mailtrap"
],
"author": "Chris Smith <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/xedi/libraries-js-mailtrap/issues"
},
"homepage": "https://github.com/xedi/libraries-js-mailtrap#readme",
"publishConfig": {
"registry": "http://npm.pkg.github.com/"
},
"files": [
"dist/*"
],
"dependencies": {
"axios": "^0.19.0",
"lodash": "^4.17.15",
"lodash.template": ">=4.5.0"
},
"devDependencies": {
"babel-core": "^6.7.7",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-istanbul": "3.0.0",
"babel-plugin-transform-es2015-modules-umd": "^6.5.0",
"babel-preset-es2015": "^6.5.0",
"babel-register": "^6.7.2",
"babelify": "^7.3.0",
"braces": ">=2.3.1",
"browserify": "^13.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": "^3.9.0",
"gulp-babel": "^6.1.2",
"gulp-eslint": "^3.0.1",
"gulp-jscs": "^4.0.0",
"gulp-jscs-stylish": "^1.3.0",
"gulp-rename": "^1.2.2",
"gulp-sourcemaps": "^2.2.0",
"gulp-uglify": "^2.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": "^1.1.0"
},
"babel": {
"presets": [
"es2015"
],
"plugins": [
[
"add-module-exports",
"transform-es2015-modules-umd"
]
],
"env": {
"development": {
"sourceMaps": "inline"
},
"tests": {
"plugins": [
"istanbul"
]
}
}
}
}