-
-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.14 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 2.14 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "parse-server-api-mail-adapter",
"version": "5.0.5",
"description": "Universal Mail Adapter for Parse Server, supports any email provider REST API, with localization and templates.",
"main": "./lib/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/parse-community/parse-server-api-mail-adapter.git"
},
"keywords": [
"parse",
"parse-server",
"mail-adapter",
"email-adapter",
"mail",
"email"
],
"author": "Manuel Trezza",
"license": "MIT",
"bugs": {
"url": "https://github.com/parse-community/parse-server-api-mail-adapter/issues"
},
"homepage": "https://github.com/parse-community/parse-server-api-mail-adapter",
"files": [
"src",
"lib",
"demo"
],
"dependencies": {
"mustache": "4.2.0"
},
"devDependencies": {
"@babel/cli": "7.28.6",
"@babel/core": "7.29.0",
"@babel/plugin-proposal-object-rest-spread": "7.20.7",
"@babel/plugin-transform-flow-strip-types": "7.27.1",
"@babel/preset-env": "7.29.0",
"@eslint/js": "9.39.3",
"@semantic-release/changelog": "6.0.3",
"@semantic-release/commit-analyzer": "13.0.1",
"@semantic-release/git": "10.0.1",
"@semantic-release/github": "12.0.6",
"@semantic-release/npm": "13.1.4",
"@semantic-release/release-notes-generator": "14.1.0",
"@types/jasmine": "6.0.0",
"@types/node": "25.3.1",
"eslint": "9.39.3",
"form-data": "4.0.5",
"globals": "16.2.0",
"jasmine": "6.1.0",
"jasmine-spec-reporter": "7.0.0",
"madge": "5.0.1",
"mailgun.js": "12.7.0",
"nyc": "18.0.0",
"semantic-release": "25.0.3",
"typescript": "5.9.3"
},
"engines": {
"node": "20 || 22 || 24"
},
"scripts": {
"build:watch": "babel src --out-dir lib --source-maps --watch",
"build": "babel src --out-dir lib --source-maps && tsc",
"lint": "eslint '{src,spec,demo}/**/*.js'",
"lint:fix": "eslint '{src,spec,demo}/**/*.js' --fix",
"madge": "node_modules/.bin/madge ./src $npm_config_arg",
"madge:circular": "npm run madge --arg=--circular",
"test": "nyc jasmine",
"prepare": "npm run build && npm test",
"demo": "node ./demo"
}
}