forked from KartikTalwar/gmail.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.13 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
{
"name": "gmail-js",
"version": "1.0.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": "./node_modules/.bin/eslint src/*.js",
"tsc": "./node_modules/.bin/tsc",
"test": "./node_modules/.bin/mocha test/test.*.js",
"ci": "npm run tsc && npm run test && npm run lint"
},
"keywords": [
"gmail",
"gmail api",
"gmail.js",
"gmail extension",
"gmail chrome extension",
"gmail firefox extension"
],
"dependencies": {
"jquery": "^3.3.1"
},
"devDependencies": {
"@types/jquery": "^1.10.27",
"eslint": "^7.20.0",
"jsdom": "^16.4.0",
"mocha": "^8.3.0",
"typescript": "^4.1.5"
},
"author": "Kartik Talwar",
"license": "MIT",
"bugs": {
"url": "https://github.com/KartikTalwar/gmail.js/issues"
},
"homepage": "https://github.com/KartikTalwar/gmail.js"
}