-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
102 lines (102 loc) · 2.88 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"author": "Kamar Mack <https://github.com/kamarmack>",
"bin": {
"hats": "./dist/index.js"
},
"bugs": "https://github.com/hats-dev/hats-cli/issues",
"dependencies": {
"@nodelib/fs.scandir": "^2.1.5",
"change-case": "^4.1.2",
"commander": "^9.1.0",
"figlet": "^1.5.2",
"inquirer": "^8.2.1"
},
"devDependencies": {
"@types/commander": "^2.12.2",
"@types/figlet": "^1.5.4",
"@types/inquirer": "^8.2.0",
"@types/jest": "^27.4.1",
"@types/uuid": "^8.3.2",
"@typescript-eslint/eslint-plugin": "^5.15.0",
"@typescript-eslint/parser": "^5.15.0",
"auto-changelog": "^2.4.0",
"eslint": "^8.11.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^2.5.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jest": "^26.1.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.0.0",
"jest": "^27.5.1",
"prettier": "2.5.1",
"ts-jest": "^27.1.3",
"typescript": "^4.6.2",
"uuid": "^8.3.2"
},
"description": "Happy TypeScript CLI",
"engines": {
"node": ">=11.14"
},
"homepage": "https://hats.dev",
"jest": {
"errorOnDeprecated": true,
"preset": "ts-jest",
"testEnvironment": "node",
"verbose": true
},
"keywords": [
"ci",
"git",
"github",
"javascript",
"npm",
"typescript"
],
"license": "BSD-3-Clause",
"main": "dist/index.js",
"name": "hats-cli",
"prettier": {
"arrowParens": "always",
"bracketSpacing": true,
"bracketSameLine": false,
"printWidth": 80,
"quoteProps": "as-needed",
"semi": true,
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "all",
"useTabs": true
},
"repository": {
"type": "git",
"url": "git://github.com/hats-dev/hats-cli.git"
},
"scripts": {
"clean-deps": "rm -rf node_modules",
"clean-build": "rm -rf dist",
"clean": "npm run clean-deps && npm run clean-build",
"predev-build": "npm run clean-build",
"dev-build": "NODE_ENV=development && tsc -p tsconfig-build.json",
"prebuild": "npm run clean-build",
"build": "NODE_ENV=production && tsc -p tsconfig-build.json",
"ts-silent-build": "tsc --project ./tsconfig.json --noEmit",
"prelint": "npm run ts-silent-build",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"prelint-fix": "npm run ts-silent-build",
"lint-fix": "eslint --fix . --ext .js,.jsx,.ts,.tsx",
"prettify": "npx prettier --write .",
"test": "jest",
"validate": "git pull --ff-only && npm i && npm run test && npm run lint",
"stage-local-changes": "doctoc . && npm run prettify && git add .",
"push-local-changes": "git push && git push --tags",
"presync": "npm run validate",
"sync": "npm run stage-local-changes && git commit",
"postsync": "npm run push-local-changes",
"preversion": "npm run validate",
"version": "auto-changelog -p && npm run stage-local-changes",
"postversion": "npm run push-local-changes && npm run build && npm publish"
},
"type": "commonjs",
"types": "dist/index.d.ts",
"version": "1.0.0"
}