-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
47 lines (47 loc) · 1.23 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
{
"name": "mailinator-client",
"version": "1.0.4",
"description": "Mailinator REST API client for JavaScript applications.",
"main": "lib/index.js",
"files": [
"lib/**/*"
],
"scripts": {
"test": "jest",
"coverage": "jest --coverage",
"build": "tsc",
"prepare": "npm run build",
"version": "git add -A .",
"postversion": "git push && git push --tags"
},
"keywords": [
"mailinator",
"email",
"inbox",
"message",
"REST-API-client"
],
"author": "Manybrain, LLC <[email protected]> (http://manybrain.com)",
"repository": {
"type": "git",
"url": "https://github.com/manybrain/mailinator-javascript-client.git"
},
"license": "The Apache License, Version 2.0 (http://www.apache.org/licenses/LICENSE-2.0.txt)",
"bugs": {
"url": "https://github.com/manybrain/mailinator-javascript-client/issues"
},
"homepage": "https://github.com/manybrain/mailinator-javascript-client",
"dependencies": {
"@types/node": "^13.1.8",
"create-index": "^2.6.0",
"fs": "0.0.1-security",
"typed-rest-client": "^1.7.1"
},
"devDependencies": {
"@types/jest": "^24.0.25",
"jest": "^24.9.0",
"tmp": "^0.1.0",
"ts-jest": "^24.3.0",
"typescript": "^3.7.4"
}
}