-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 871 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 871 Bytes
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
{
"name": "bug-tracker",
"version": "1.0.0",
"description": "A script to fetch bug-type cards from Shortcut and write them to Google Sheets",
"main": "dist/script.js",
"scripts": {
"build": "tsc",
"start": "node dist/script.js",
"migrate": "node dist/linear-to-shortcut-migration.js",
"fix-duplicates": "node dist/linear-to-shortcut-migration.js --fix-duplicates"
},
"repository": {
"type": "git",
"url": "git+https://github.com/calcust/bug-tracker.git"
},
"keywords": [],
"author": "Calvin Custodio",
"license": "ISC",
"bugs": {
"url": "https://github.com/calcust/bug-tracker/issues"
},
"homepage": "https://github.com/calcust/bug-tracker#readme",
"dependencies": {
"googleapis": "^144.0.0",
"dotenv": "^8.2.0"
},
"devDependencies": {
"@types/node": "^14.14.31",
"typescript": "^4.1.3"
}
}