-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.68 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
{
"name": "pluot",
"version": "1.0.0",
"description": "Create iCal files from Wild Apricot events",
"keywords": [
"cli",
"ical",
"nodejs",
"rss",
"wild-apricot"
],
"homepage": "https://github.com/evelynhathaway/pluot#readme",
"bugs": {
"url": "https://github.com/evelynhathaway/pluot/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/evelynhathaway/pluot.git"
},
"license": "MIT",
"author": "Evelyn Hathaway <npm@evelynhathaway.com> (https://evelynhathaway.com)",
"files": [
"/bin",
"/lib"
],
"main": "./lib/index.js",
"bin": {
"pluot": "./bin/pluot.js"
},
"scripts": {
"build": "tsc",
"build:watch": "tsc -w",
"lint": "eslint --ext .ts ./"
},
"dependencies": {
"deepmerge": "^4.2.2",
"ical-generator": "^1.11.0",
"request": "^2.88.2",
"request-promise-native": "^1.0.8",
"sanitize-html": "^1.27.0",
"simple-oauth2": "^4.1.0",
"yargs": "^15.4.0"
},
"devDependencies": {
"@types/node": "^14.0.14",
"@types/request": "^2.48.5",
"@types/request-promise-native": "^1.0.17",
"@types/sanitize-html": "^1.23.3",
"@types/simple-oauth2": "^2.5.3",
"@typescript-eslint/eslint-plugin": "^3.5.0",
"@typescript-eslint/parser": "^3.5.0",
"chai": "^4.2.0",
"eslint": "^7.4.0",
"eslint-plugin-evelyn": "3.0.0-beta.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-mocha": "^7.0.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-unicorn": "^20.1.0",
"mocha": "^8.0.1",
"ts-essentials": "^7.0.0",
"typescript": "^3.9.6",
"typescript-eslint-parser": "^22.0.0"
},
"engines": {
"node": ">=8.0.0"
}
}