forked from nylas/nylas-nodejs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 2.12 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
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
73
74
75
76
77
78
79
80
81
{
"name": "nylas-legacy",
"version": "6.11.1",
"description": "A NodeJS wrapper for the Nylas v2 REST API for email, contacts, and calendar.",
"main": "lib/nylas.js",
"types": "lib/nylas.d.ts",
"files": [
"lib"
],
"scripts": {
"test": "jest",
"test:coverage": "npm run test -- --coverage",
"lint": "eslint --ext .js,.ts -f visualstudio .",
"lint:fix": "npm run lint -- --fix",
"lint:ci": "npm run lint:fix -- --quiet",
"lint:prettier": "prettier --write '**/*.{ts,js}'",
"lint:prettier:check": "prettier --check '**/*.{ts,js}'",
"build": "tsc",
"prepare": "npm run build",
"watch": "nodemon -w src --exec npm run build"
},
"jest": {
"preset": "ts-jest/presets/js-with-ts",
"globals": {
"ts-jest": {
"tsConfig": "tsconfig.test.json"
}
},
"coverageThreshold": {
"global": {
"functions": 80,
"lines": 80,
"statements": 80
}
}
},
"keywords": [
"email",
"contacts",
"calendar",
"nylas"
],
"author": "Nylas, Inc.",
"license": "MIT",
"dependencies": {
"abort-controller": "^3.0.0",
"backoff": "^2.5.0",
"form-data": "^4.0.0",
"JSONStream": "^1.3.5",
"node-fetch": "^2.6.12",
"uuid": "^8.3.2",
"websocket": "^1.0.34"
},
"devDependencies": {
"@babel/cli": "^7.13.16",
"@babel/core": "^7.3.3",
"@babel/plugin-proposal-object-rest-spread": "^7.3.2",
"@babel/preset-env": "^7.3.1",
"@types/backoff": "^2.5.1",
"@types/jest": "^25.1.4",
"@types/node-fetch": "^2.5.8",
"@types/uuid": "^8.3.4",
"@types/websocket": "^1.0.5",
"@typescript-eslint/eslint-plugin": "^2.25.0",
"@typescript-eslint/parser": "^2.25.0",
"babel-eslint": "^10.0.1",
"eslint": "^5.14.0",
"eslint-config-prettier": "^4.0.0",
"eslint-plugin-custom-rules": "^0.0.0",
"eslint-plugin-prettier": "^3.0.1",
"jest": "^24.9.0",
"prettier": "^1.19.1",
"pretty-format": "^25.2.6",
"ts-jest": "^25.2.1",
"typescript": "^3.8.3"
},
"repository": {
"type": "git",
"url": "https://github.com/nylas/nylas-nodejs-legacy.git"
}
}