-
Notifications
You must be signed in to change notification settings - Fork 119
/
package.json
77 lines (77 loc) · 2.36 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
{
"name": "nylas",
"version": "7.6.1",
"description": "A NodeJS wrapper for the Nylas REST API for email, contacts, and calendar.",
"main": "lib/cjs/nylas.js",
"types": "lib/types/nylas.d.ts",
"module": "lib/esm/nylas.js",
"files": [
"lib"
],
"engines": {
"node": ">=16"
},
"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}'",
"export-version": "node scripts/exportVersion.js",
"generate-lib-package-json": "node scripts/generateLibPackageJson.js",
"generate-model-index": "node scripts/generateModelIndex.js",
"prebuild": "npm run export-version && npm run generate-model-index",
"build": "rm -rf lib && npm run build-esm && npm run build-cjs && npm run generate-lib-package-json",
"build-esm": "tsc -p tsconfig.esm.json",
"build-cjs": "tsc -p tsconfig.cjs.json",
"prepare": "npm run build",
"build:docs": "typedoc --out docs",
"version": "npm run export-version && git add src/version.ts"
},
"keywords": [
"email",
"contacts",
"calendar",
"nylas"
],
"author": "Nylas, Inc.",
"license": "MIT",
"dependencies": {
"change-case": "^4.1.2",
"form-data": "^4.0.0",
"mime-types": "^2.1.35",
"node-fetch": "^2.6.12",
"uuid": "^8.3.2"
},
"devDependencies": {
"@babel/core": "^7.3.3",
"@types/jest": "^29.5.2",
"@types/mime-types": "^2.1.2",
"@types/node-fetch": "^2.6.4",
"@types/uuid": "^8.3.4",
"@typescript-eslint/eslint-plugin": "^2.25.0",
"@typescript-eslint/parser": "^2.25.0",
"eslint": "^5.14.0",
"eslint-config-prettier": "^4.0.0",
"eslint-plugin-custom-rules": "^0.0.0",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-import": "^2.28.1",
"jest": "^29.6.1",
"prettier": "^1.19.1",
"ts-jest": "^29.1.1",
"typedoc": "^0.24.8",
"typedoc-plugin-rename-defaults": "^0.6.5",
"typescript": "^4.9.5"
},
"repository": {
"type": "git",
"url": "https://github.com/nylas/nylas-nodejs.git"
},
"exports": {
"import": "./lib/esm/nylas.js",
"require": "./lib/cjs/nylas.js",
"types": "./lib/types/nylas.d.ts"
}
}