forked from linear/linear-import
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.23 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.23 KB
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
{
"name": "linear-github-import",
"version": "0.1.0",
"main": "dist/index.js",
"module": "dist/linear-github-import.esm.js",
"typings": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"cli": "ts-node --project cli-tsconfig.json src/cli",
"start": "tsdx watch",
"build": "tsdx build",
"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.15",
"node-fetch": "2.6.0",
"ts-node": "8.3.0"
}
}