-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.16 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.16 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
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": "grmc",
"version": "1.2.0",
"description": "git release management command-line tool",
"repository": "https://github.com/gloriaJun/github-release-cli.git",
"author": "gloriaJun <pureainu@gmail.com>",
"license": "(MIT OR Apache-2.0)",
"bin": "./bin/grmc",
"files": [
"lib",
"bin"
],
"bugs": {
"url": "https://github.com/gloriaJun/github-release-cli/issues"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
},
"keywords": [
"git",
"releaes",
"tag"
],
"scripts": {
"prebuild": "rimraf lib",
"build": "parcel build src/index.ts -d lib --target node --bundle-node-modules --no-source-maps",
"prestart": "yarn build",
"start": "node ./bin/grmc",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"lint:fix": "eslint . --fix --ext .js,.jsx,.ts,.tsx"
},
"devDependencies": {
"@babel/core": "^7.12.9",
"@babel/preset-typescript": "^7.12.7",
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@octokit/openapi-types": "^2.0.1",
"@octokit/types": "^6.1.1",
"@types/commander": "^2.12.2",
"@types/dotenv": "^8.2.0",
"@types/inquirer": "^7.3.1",
"@types/js-yaml": "^3.12.5",
"@types/node": "^14.14.7",
"@types/ora": "^3.2.0",
"@types/semver": "^7.3.4",
"@typescript-eslint/eslint-plugin": "^4.7.0",
"@typescript-eslint/parser": "^4.9.1",
"babel-plugin-module-resolver": "^4.0.0",
"eslint": "^7.13.0",
"eslint-config-prettier": "^6.15.0",
"eslint-import-resolver-babel-module": "^5.2.0",
"eslint-import-resolver-typescript": "^2.3.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.1.4",
"husky": "^4.3.0",
"lint-staged": "^10.5.1",
"parcel-bundler": "^1.12.4",
"prettier": "^2.1.2",
"rimraf": "^3.0.2",
"typescript": "^4.0.5"
},
"dependencies": {
"@octokit/rest": "^18.0.9",
"chalk": "^4.1.0",
"commander": "^6.2.0",
"dotenv": "^8.2.0",
"inquirer": "^7.3.3",
"js-yaml": "^3.14.1",
"ora": "^5.1.0",
"pad": "^3.2.0",
"semver": "^7.3.2"
},
"alias": {
"src": "./src/"
},
"engines": {
"node": ">=12.13.0"
}
}