-
Notifications
You must be signed in to change notification settings - Fork 458
/
package.json
executable file
·39 lines (39 loc) · 1.1 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
{
"name": "gmail-js",
"version": "1.1.15",
"description": "JavaScript API for Gmail (useful for chrome extensions)",
"main": "src/gmail.js",
"types": "src/gmail.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/KartikTalwar/gmail.js.git"
},
"scripts": {
"lint": "eslint src/*.js",
"tsc": "tsc src/*.ts",
"test": "jest --watchAll=false --reporters=default --reporters=jest-junit",
"ci": "npm run tsc && npm run test && npm run lint"
},
"keywords": [
"gmail",
"gmail api",
"gmail.js",
"gmail extension",
"gmail chrome extension",
"gmail firefox extension"
],
"devDependencies": {
"@types/jquery": "^3.5.14",
"eslint": "^8.23.1",
"jest": "^29.5.0",
"jest-junit": "^16.0.0",
"jsdom": "^20.0.0",
"typescript": "^4.8.3"
},
"author": "Kartik Talwar",
"license": "MIT",
"bugs": {
"url": "https://github.com/KartikTalwar/gmail.js/issues"
},
"homepage": "https://github.com/KartikTalwar/gmail.js"
}