-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.37 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.37 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
{
"name": "mailinator-client",
"version": "1.1.0",
"description": "Mailinator REST API client for JavaScript applications.",
"main": "lib/index.js",
"files": [
"lib/**/*"
],
"scripts": {
"generate:index": "node scripts/generate-barrels.js",
"test": "jest",
"coverage": "jest --coverage",
"build": "npm run generate:index && tsc && node scripts/sync-lib-layout.js",
"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 <support@manybrain.com> (http://manybrain.com)",
"repository": {
"type": "git",
"url": "git+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",
"typed-rest-client": "^1.7.1"
},
"devDependencies": {
"@types/jest": "^30.0.0",
"@types/uuid": "^10.0.0",
"dotenv": "^17.2.3",
"jest": "^30.2.0",
"tmp": "^0.2.5",
"ts-jest": "^29.4.6",
"typescript": "^5.9.3",
"uuid": "^8.3.2"
}
}