This repository has been archived by the owner on Jan 22, 2022. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
79 lines (79 loc) · 1.79 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
77
78
79
{
"name": "mkissue",
"description": "Create GitHub issues from importing CSV file.",
"version": "1.0.3",
"author": "Kentaro Matsushita @kentaro-m",
"bin": {
"mkissue": "./bin/run"
},
"bugs": "https://github.com/kentaro-m/mkissue/issues",
"dependencies": {
"@oclif/command": "^1.5.13",
"@oclif/config": "^1.13.0",
"@oclif/plugin-help": "^2.1.6",
"@octokit/rest": "^16.27.0",
"@types/csv-parse": "^1.2.2",
"@types/jest": "^24.0.18",
"@types/node": "^12.0.2",
"@types/request-promise-native": "^1.0.16",
"cli-ux": "^5.2.1",
"csv-parse": "^4.4.1",
"jest": "^24.9.0",
"request-promise-native": "^1.0.7",
"ts-jest": "^24.0.2",
"tslib": "^1.9.3"
},
"devDependencies": {
"@oclif/dev-cli": "^1.21.2",
"globby": "^8.0.2",
"ts-node": "^8.1.1",
"typescript": "^3.6.2"
},
"engines": {
"node": ">=8.0.0"
},
"files": [
"/bin",
"/lib",
"/npm-shrinkwrap.json",
"/oclif.manifest.json"
],
"homepage": "https://github.com/kentaro-m/mkissue",
"keywords": [
"oclif"
],
"license": "MIT",
"main": "lib/index.js",
"oclif": {
"commands": "./lib/commands",
"bin": "mkissue",
"plugins": [
"@oclif/plugin-help"
]
},
"repository": "https://github.com/kentaro-m/mkissue",
"scripts": {
"postpack": "rm -f oclif.manifest.json",
"prepack": "rm -rf lib && tsc -b && oclif-dev manifest && oclif-dev readme",
"test": "jest",
"version": "oclif-dev readme && git add README.md"
},
"types": "lib/index.d.ts",
"jest": {
"moduleFileExtensions": [
"ts",
"js"
],
"transform": {
"^.+\\.ts$": "ts-jest"
},
"globals": {
"ts-jest": {
"tsConfig": "tsconfig.json"
}
},
"testMatch": [
"**/__tests__/**/*.test.ts"
]
}
}