-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 865 Bytes
/
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
{
"name": "feeder",
"version": "1.0.0",
"main": "code.ts",
"homepage": "https://github.com/takubokudori/feeder",
"repository": {
"type": "git",
"url": "https://github.com/takubokudori/feeder"
},
"scripts": {
"test": "jest"
},
"keywords": [],
"author": "takubokudori",
"license": "Apache-2.0",
"devDependencies": {
"@google/clasp": "^2.4.2",
"@types/core-js": "^2.5.5",
"@types/jest": "^29.2.5",
"eslint": "^8.31.0",
"jest": "^29.3.1",
"ts-jest": "^29.0.5"
},
"dependencies": {
"@types/google-apps-script": "^1.0.57"
},
"description": "A Google Apps Script (GAS) to send translated RSS feeds to Slack.",
"roots": [
"<rootDir>/src"
],
"testMatch": [
"**/tests/**/*.+(ts|tsx|js)",
"**/?(*.)+(spec|test).+(ts|tsx|js)"
],
"transform": {
"^.+\\.(ts|tsx)$": "ts-jest"
}
}