-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
51 lines (51 loc) · 1.43 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
{
"name": "guerrillamail-api",
"version": "1.2.2",
"description": "A JavaScript promise-based wrapper for the Guerrilla Mail API",
"main": "src/index.js",
"scripts": {
"dev": "webpack --mode=development --watch",
"build": "webpack --mode=production",
"prepare": "npm run build",
"test": "cross-env NODE_ENV=test jest --no-cache",
"test:watch": "cross-env NODE_ENV=test jest --watch --no-cache",
"test:coverage": "cross-env NODE_ENV=test jest --coverage --no-cache"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Dobby89/guerrillamail-api.git"
},
"keywords": [
"guerrillamail",
"guerrilla",
"mail",
"email",
"api",
"wrapper"
],
"author": "Robin O'Neill",
"license": "MIT",
"bugs": {
"url": "https://github.com/Dobby89/guerrillamail-api/issues"
},
"homepage": "https://github.com/Dobby89/guerrillamail-api#readme",
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/plugin-proposal-object-rest-spread": "^7.2.0",
"@babel/preset-env": "^7.2.3",
"babel-core": "^7.0.0-bridge.0",
"babel-loader": "^8.0.5",
"cross-env": "^5.2.0",
"eslint": "^5.12.0",
"eslint-config-ao": "^0.0.1-rc.4.0",
"eslint-plugin-jest": "^22.1.3",
"jest": "^24.1.0",
"webpack": "^4.29.3",
"webpack-cli": "^3.2.3"
},
"dependencies": {
"axios": "^0.18.0",
"eventemitter3": "^3.1.0",
"setinterval-plus": "^1.0.3"
}
}