-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
100 lines (100 loc) · 2.74 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
{
"name": "@allohamora/cli",
"version": "1.14.1",
"description": "cli to initialize projects and more",
"input": "./src/index.ts",
"main": "./bin/cli.js",
"bin": "./bin/cli.js",
"type": "commonjs",
"scripts": {
"dev": "ts-node-dev --respawn -r tsconfig-paths/register src/index.ts",
"build": "rimraf ./bin && rollup -c rollup.config.js --bundleConfigAsCjs",
"prestart": "npm run build",
"start": "npm unlink @allohamora/cli && npm link @allohamora/cli && ./bin/cli.js",
"prepare": "husky",
"format": "prettier . --check",
"format:fix": "prettier --write .",
"release": "standard-version --tag-prefix=",
"release:minor": "standard-version --release-as minor --tag-prefix=",
"release:patch": "standard-version --release-as patch --tag-prefix=",
"release:major": "standard-version --release-as major --tag-prefix=",
"lint": "eslint \"**/*.ts\"",
"lint:fix": "eslint \"**/*.ts\" --fix",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/allohamora/cli.git"
},
"keywords": [
"cli",
"nodejs",
"typescript",
"eslint",
"prettier",
"husky",
"lint-staged",
"standard-version",
"commitlint",
"workflow"
],
"author": "https://github.com/allohamora",
"license": "MIT",
"bugs": {
"url": "https://github.com/allohamora/cli/issues"
},
"homepage": "https://github.com/allohamora/cli#readme",
"engines": {
"node": ">=16.14.2",
"npm": ">=8.5.0"
},
"files": [
"bin/"
],
"devDependencies": {
"@commitlint/cli": "^17.6.1",
"@commitlint/config-conventional": "^17.6.1",
"@rollup/plugin-commonjs": "^24.1.0",
"@types/inquirer": "^8.2.1",
"@types/jest": "^29.5.0",
"@typescript-eslint/eslint-plugin": "^5.58.0",
"@typescript-eslint/parser": "^5.58.0",
"eslint": "^8.38.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-beautiful-sort": "^3.0.1",
"eslint-plugin-deprecation": "^2.0.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^9.0.11",
"jest": "^29.5.0",
"lint-staged": "^13.2.1",
"prettier": "^2.8.7",
"rimraf": "^5.0.0",
"rollup": "^3.20.2",
"rollup-plugin-typescript2": "^0.34.1",
"standard-version": "^9.5.0",
"ts-jest": "^29.1.0",
"ts-node-dev": "^2.0.0",
"tsconfig-paths": "^4.2.0",
"type-fest": "^2.19.0",
"typescript": "^5.0.4",
"yaml": "^2.2.1"
},
"dependencies": {
"inquirer": "^8.2.4",
"ora": "^5.4.1"
},
"standard-version": {
"skip": {
"tag": true
}
},
"lint-staged": {
"*.ts": [
"eslint --fix",
"jest --findRelatedTests"
],
"*.{js,json,yml,md}": "prettier --write"
}
}