-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.72 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.72 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
{
"name": "universal-email-automation",
"version": "2.0.0",
"description": "Email automation for Google Workspace - Apps Script for teams, Node.js for advanced deployments",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"build": "npm run build -w @universal-email/core && npm run build -w @universal-email/nodejs-google && npm run build -w @universal-email/nodejs-microsoft",
"build:core": "npm run build -w @universal-email/core",
"build:nodejs": "npm run build -w @universal-email/nodejs-google",
"build:microsoft": "npm run build -w @universal-email/nodejs-microsoft",
"test": "npm run test -w @universal-email/core",
"test:coverage": "npm run test:coverage -w @universal-email/core",
"lint": "eslint packages/*/src/**/*.ts",
"format": "prettier --write \"packages/*/src/**/*.ts\"",
"clean": "rm -rf packages/*/dist",
"dev:core": "npm run dev -w @universal-email/core",
"dev:nodejs": "npm run dev -w @universal-email/nodejs-google",
"dev:microsoft": "npm run dev -w @universal-email/nodejs-microsoft"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^7.0.0",
"eslint": "^8.57.0",
"prettier": "^3.2.5",
"typescript": "^5.4.0"
},
"engines": {
"node": ">=18.0.0",
"npm": ">=9.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/anomalyco/universal-email-automation"
},
"keywords": [
"email",
"automation",
"typescript",
"nodejs",
"google-apps-script",
"microsoft-365",
"outlook",
"email-templates",
"workflow",
"google-workspace",
"microsoft-graph",
"mail-merge"
],
"author": "Enayatullah",
"license": "MIT"
}