-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
41 lines (41 loc) · 1.09 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
{
"name": "google-calendar-url",
"version": "0.0.5",
"description": "Generate shareable URLs for adding Google Calendar events",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": "https://github.com/lirbank/google-calendar-url.git",
"author": "Mikael Lirbank",
"license": "MIT",
"files": [
"dist"
],
"keywords": [
"google-calendar",
"google-calendar-api",
"calendar",
"typescript"
],
"scripts": {
"prepublishOnly": "yarn compile",
"compile": "tsc",
"compile:watch": "tsc --watch",
"test": "jest",
"test:watch": "jest --watch",
"prettier": "prettier --list-different \"**/*.{ts,json,md}\"",
"prettier:fix": "prettier --write \"**/*.{ts,json,md}\"",
"lint": "eslint --ext .ts src/",
"lint:fix": "eslint --ext .ts --fix src/"
},
"devDependencies": {
"@babel/core": "7.10.2",
"@babel/preset-env": "7.10.2",
"@babel/preset-typescript": "7.10.1",
"@types/jest": "25.2.3",
"babel-jest": "26.0.1",
"jest": "26.0.1",
"prettier": "2.0.5",
"tslib": "2.0.0",
"typescript": "3.9.5"
}
}