-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.41 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
{
"name": "quick-tag",
"description": "Node CLI for quickly tagging releases for git, available via npx",
"version": "1.2.0",
"main": "index.js",
"bin": "index.js",
"scripts": {
"dev": "NODE_ENV=development ts-node src/index.ts",
"start": "node dist/index.js",
"start:debug": "DEBUG=true node dist/index.js",
"build": "rm -rf dist && tsc -b && scripts/postBuild.sh",
"lint": "eslint '*/**/*.{js,ts}' --fix",
"prettier": "prettier --loglevel warn --write '**/*.{js,json,md,ts}'",
"npx-publish": "scripts/publish.sh"
},
"dependencies": {
"inquirer": "^7.3.3",
"shelljs": "^0.8.4",
"module-alias": "^2.2.2"
},
"devDependencies": {
"@types/inquirer": "^7.3.1",
"@types/module-alias": "^2.0.0",
"@types/node": "^14.14.16",
"@types/shelljs": "^0.8.8",
"@typescript-eslint/eslint-plugin": "^4.11.1",
"@typescript-eslint/parser": "^4.11.1",
"eslint": "^7.16.0",
"eslint-config-prettier": "^7.1.0",
"eslint-plugin-prettier": "^3.3.0",
"prettier": "^2.2.1",
"ts-node": "^9.1.1",
"typescript": "^4.1.3"
},
"_moduleAliases": {
"@": "dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/barclayd/quick-tag.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/barclayd/quick-tag/issues"
},
"homepage": "https://github.com/barclayd/quick-tag#readme"
}