-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.78 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
{
"name": "prettier-inittier",
"version": "1.1.0",
"description": "one-liner to install and configure prettier",
"main": "dist/index.js",
"scripts": {
"start": "npm run build && node dist/index.js",
"build": "tsc",
"test": "vitest --coverage",
"test:ci": "vitest run --coverage",
"lint:files": "eslint --ignore-path ./.lintignore",
"lint": "npm run lint:files .",
"format:files": "prettier --ignore-path ./.lintignore --write",
"format": "npm run format:files .",
"prepare": "simple-git-hooks",
"make-badges": "jest-coverage-badges --output './static' && git add static/* && git commit -m 'update badges' --no-verify"
},
"simple-git-hooks": {
"pre-commit": "npm run format && npm run lint",
"pre-push": "npm run test:ci"
},
"bin": {
"prettier-inittier": "./dist/index.js"
},
"repository": {
"type": "git",
"url": "[email protected]:krnsk0/prettier-inittier.git"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"keywords": [
"git",
"cli",
"interactive",
"branch"
],
"author": "[email protected]",
"license": "MIT",
"bugs": {
"url": "https://github.com/krnsk0/prettier-inittier/issues"
},
"homepage": "https://github.com/krnsk0/prettier-inittier#readme",
"devDependencies": {
"@types/shelljs": "^0.8.12",
"@typescript-eslint/eslint-plugin": "^6.7.2",
"@typescript-eslint/parser": "^6.7.2",
"@vitest/coverage-istanbul": "^0.34.5",
"eslint": "^8.50.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-vitest": "^0.3.1",
"jest-coverage-badges": "^1.1.2",
"prettier": "^3.0.3",
"simple-git-hooks": "^2.9.0",
"typescript": "^5.2.2",
"vitest": "^0.34.5"
},
"dependencies": {
"kleur": "^4.1.5",
"shelljs": "^0.8.5"
}
}