-
-
Notifications
You must be signed in to change notification settings - Fork 88
/
package.json
58 lines (58 loc) · 1.37 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
{
"name": "react-google-calendar-api",
"version": "2.3.0",
"description": "An api to manage your google calendar",
"main": "./dist/ApiCalendar.js",
"types": "./dist/ApiCalendar.d.ts",
"scripts": {
"build": "tslint --project . && tsup src/ApiCalendar.ts --dts",
"dev": "tsup src/ApiCalendar.ts --dts --watch",
"test": "jest"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/Kubessandra/react-google-calendar-api.git"
},
"keywords": [
"react",
"google",
"calendar",
"api"
],
"author": "aymeric beudaert",
"license": "MIT",
"bugs": {
"url": "https://github.com/Kubessandra/react-google-calendar-api/issues"
},
"homepage": "https://github.com/Kubessandra/react-google-calendar-api#readme",
"devDependencies": {
"@types/gapi": "^0.0.44",
"@types/gapi.calendar": "^3.0.6",
"@types/google.accounts": "^0.0.6",
"@types/jest": "^29.4.0",
"@types/node": "^18.13.0",
"jest": "^29.4.2",
"linted": "1.0.5",
"ts-jest": "^29.0.5",
"tslint": "^6.1.3",
"tsup": "^6.0.1",
"typescript": "^4.7.2"
},
"files": [
"/dist"
]
}