-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.51 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
{
"keywords": [],
"name": "@luismayta/zsh-gst",
"private": true,
"description": "gst for zsh",
"version": "0.0.0",
"repository": "ssh://git@github.com/luismayta/zsh-gst.git",
"author": "Luis Mayta <slovacus@gmail.com>",
"license": "MIT",
"scripts": {
"clean": "rimraf dist .next out build",
"clean:all": "yarn clean node_modules",
"lint": "eslint -c .eslintrc.js ./ --ext .js,.jsx,.mjs,.d.ts,.ts,.tsx",
"lint:fix": "yarn lint --fix",
"prettier": "prettier '**/*.{js?(on),ts?(x),jsx,less,scss,md?(x),y(a)ml}' --write=false --list-different",
"prettier:fix": "yarn prettier --write=true",
"precommit": "lint-staged"
},
"publishConfig": {
"access": "private"
},
"engines": {
"node": ">=v12.22.12"
},
"husky": {
"hooks": {
"pre-commit": "yarn precommit",
"commit-msg": "commitlint -c .commitlintrc.json -E HUSKY_GIT_PARAMS"
}
},
"devDependencies": {
"@commitlint/cli": "^17.8.1",
"@commitlint/config-conventional": "^17.8.1",
"@equipindustry/eslint-config": "^0.3.4",
"@equipindustry/prettierrc": "^0.2.0",
"@typescript-eslint/eslint-plugin": "^5.41.0",
"@typescript-eslint/parser": "^5.41.0",
"babel": "^6.23.0",
"babel-eslint": "^10.1.0",
"eslint": "<=6.8.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^6.0.0",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"prettier-tslint": "^0.4.2",
"rimraf": "^3.0.2",
"semantic-release": "^19.0.5",
"typescript": "^4.8.4"
},
"dependencies": {}
}