This repository has been archived by the owner on Jun 16, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
98 lines (98 loc) · 2.68 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
{
"name": "@ofadiman/plop-utils",
"version": "0.4.0",
"author": {
"email": "ofadiman@gmail.com",
"name": "Szymon Jaworski",
"url": "https://github.com/Ofadiman"
},
"description": "Utilities for plop generator.",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"license": "MIT",
"scripts": {
"build": "rimraf dist && tsc -b tsconfig.build.json",
"eslint-check": "eslint src/**/*.{ts,tsx}",
"eslint-fix": "eslint src/**/*.{ts,tsx} --fix",
"postinstall": "is-ci || husky install",
"postpublish": "pinst --enable",
"postversion": "git push --follow-tags",
"prepublishOnly": "pinst --disable",
"prettier": "prettier --write .",
"preversion": "scripts/check-branch.sh",
"syncpack-format": "syncpack format",
"test": "jest",
"test-ci": "CI=true jest",
"test-coverage": "rimraf coverage && CI=true jest --collectCoverage"
},
"dependencies": {
"execa": "^5.0.0",
"lodash": "^4.17.21",
"ora": "^5.4.0",
"plop": "^2.7.4",
"pluralize": "^8.0.0",
"ts-node": "^9.1.1"
},
"devDependencies": {
"@commitlint/cli": "^12.0.1",
"@commitlint/config-conventional": "^12.0.1",
"@ofadiman/eslint-config-base": "^0.1.7",
"@prettier/plugin-xml": "^0.13.1",
"@types/jest": "^26.0.20",
"@types/lodash": "^4.14.168",
"@types/pluralize": "^0.0.29",
"@typescript-eslint/eslint-plugin": "^4.13.0",
"@typescript-eslint/parser": "^4.13.0",
"babel-eslint": "^10.1.0",
"eslint": "^7.17.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.1.3",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-simple-import-sort": "^6.0.1",
"eslint-plugin-sort-keys-fix": "^1.1.1",
"eslint-plugin-typescript-sort-keys": "^1.5.0",
"eslint-plugin-unicorn": "^23.0.0",
"husky": "^5.1.3",
"is-ci": "^3.0.0",
"jest": "^26.6.3",
"jest-mock-console": "^1.0.1",
"lint-staged": "^10.5.4",
"pinst": "^2.1.6",
"prettier": "^2.2.1",
"rimraf": "^3.0.2",
"syncpack": "^5.7.11",
"ts-jest": "^26.5.3",
"ts-node": "^9.1.1",
"typescript": "^4.2.3",
"utility-types": "^3.10.0"
},
"peerDependencies": {
"@types/chalk": "^2.2.0",
"chalk": "^4.1.0"
},
"bugs": "https://github.com/Ofadiman/plop-utils/issues",
"engines": {
"node": ">=14.0.0"
},
"files": [
"LICENSE",
"dist",
"readme.md"
],
"keywords": [
"javascript",
"plop",
"typescript",
"utils"
],
"lint-staged": {
"*.{md,html,css}": "prettier --write",
"*.{ts,tsx}": "eslint --fix"
},
"private": false,
"publishConfig": {
"access": "public"
},
"repository": "Ofadiman/plop-utils"
}