-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.4 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
{
"name": "shift-cal-json-to-ics",
"description": "Tool that fetches events from the Shift2Bikes calendar and converts them from JSON to ICS",
"version": "2.0.0",
"author": "[email protected]",
"bugs": {
"url": "https://github.com/theholla/shift-ics-generator/issues",
"email": "[email protected]"
},
"dependencies": {
"axios": "^0.21.1",
"ics": "^2.27.0",
"jest": "^26.6.3"
},
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/jest": "^25.2.3",
"@types/node": "^13.13.52",
"@types/prettier": "^1.19.1",
"@typescript-eslint/eslint-plugin": "^2.34.0",
"@typescript-eslint/parser": "^2.34.0",
"acorn": "^7.4.1",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-jest": "^22.21.0",
"eslint-plugin-prettier": "^3.4.0",
"pre-commit": "^1.2.2",
"prettier": "1.19.1",
"typescript": "^3.9.9"
},
"homepage": "https://github.com/theholla/shift-ics-generator/blob/master/README.md",
"keywords": [
"shift2bikes",
"pedalpalooza"
],
"license": "MIT",
"main": "index.js",
"pre-commit": [
"lint",
"test"
],
"repository": {
"type": "git",
"url": "git+https://github.com/theholla/shift-ics-generator.git"
},
"scripts": {
"start:dev": "tsc --watch",
"build": "tsc",
"ics": "node dist/index",
"lint": "eslint . --ext .js,.ts,.json",
"test": "jest dist"
}
}