-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.39 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.39 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
{
"name": "wingbot-mails-gdocs",
"version": "1.2.0",
"description": "Utility for storing mail templates in google docs",
"main": "src/main.js",
"scripts": {
"test": "npm run test:lint && npm run test:coverage && npm run test:coverage:threshold",
"test:unit": "mocha ./test/**/*.js",
"test:unit:watch": "npm run test:unit -- --watch",
"test:coverage": "nyc --reporter=html mocha ./test && nyc report",
"test:coverage:threshold": "nyc check-coverage --lines 70 --functions 80 --branches 20",
"test:lint": "eslint ./src/**/*.js ./test/**/*.js "
},
"repository": {
"type": "git",
"url": "git+https://github.com/wingbotai/wingbot-mails-gdocs.git"
},
"author": "wingbot.ai",
"license": "MIT",
"engines": {
"node": ">=12.0.0"
},
"bugs": {
"url": "https://github.com/wingbotai/wingbot-mails-gdocs/issues"
},
"homepage": "https://github.com/wingbotai/wingbot-mails-gdocs#readme",
"dependencies": {
"@googleapis/drive": "^8.14.0",
"cheerio": "^1.0.0",
"google-auth-library": "^9.14.1",
"html-to-text": "^9.0.5"
},
"devDependencies": {
"eslint": "^8.31.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.27.4",
"eslint-plugin-jsdoc": "^39.6.4",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-mocha": "^10.1.0",
"jsdoc-to-markdown": "^8.0.0",
"mocha": "^10.2.0",
"nyc": "^15.1.0"
}
}