forked from linear/linear-import
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 1.72 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "@linear/import",
"version": "0.2.3",
"main": "dist/index.js",
"module": "dist/linear-import.esm.js",
"typings": "dist/index.d.ts",
"files": [
"dist"
],
"bin": {
"linear-import": "bin/linear-import.js"
},
"scripts": {
"cli": "ts-node --project cli-tsconfig.json src/cli",
"start": "tsdx watch",
"build": "tsdx build --entry src/cli.ts",
"test": "tsdx test",
"postinstall": "yarn build"
},
"peerDependencies": {},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"prettier": {
"printWidth": 80,
"tabWidth": 2,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
},
"devDependencies": {
"@types/jest": "24.0.17",
"@types/node": "^14.0.1",
"husky": "3.0.3",
"prettier": "1.18.2",
"pretty-quick": "1.11.1",
"tsdx": "0.7.2",
"tslib": "1.10.0",
"typescript": "3.5.3"
},
"dependencies": {
"@types/chalk": "2.2.0",
"@types/csvtojson": "^1.1.5",
"@types/inquirer": "6.5.0",
"@types/lodash": "^4.14.149",
"@types/node-fetch": "2.5.0",
"chalk": "2.4.2",
"csvtojson": "2.0.10",
"inquirer": "6.5.1",
"inquirer-file-path": "1.0.1",
"jira2md": "^2.0.4",
"lodash": "^4.17.19",
"node-fetch": "2.6.1",
"ts-node": "8.3.0",
"tsdx": "0.7.2"
},
"description": "Import your tasks into Linear",
"repository": {
"type": "git",
"url": "git+https://github.com/linearapp/linear-import.git"
},
"keywords": [
"linear",
"import",
"task",
"issue",
"tracking"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/linearapp/linear-import/issues"
},
"homepage": "https://github.com/linearapp/linear-import#readme"
}