-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
74 lines (74 loc) · 2.73 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
{
"name": "@infosisarg/commitlint-config",
"version": "0.1.0",
"description": "commitlint-config for git commit",
"author": "Luis Mayta <[email protected]>",
"license": "LGPL-3.0",
"main": "commitlint.config.js",
"scripts": {
"build": "./node_modules/.bin/tsc -p",
"build:tool": "yarn run build ./tools/",
"clean": "rimraf -rf dist",
"clean:all": "yarn clean:cache && yarn clean:build:all && yarn clean node_modules",
"clean:build": "yarn clean dist .next out .serverless_nextjs",
"clean:build:all": "yarn clean && yarn clean:build && yarn clean:build:tool && yarn clean:build:test",
"clean:build:test": "yarn clean ./coverage",
"clean:build:tool": "yarn clean ./build/tools",
"clean:cache": "yarn clean ./node_modules/.cache",
"lint": "eslint --config=.ci/linters/.eslintrc.js --ignore-path=.ci/linters/.eslintignore ./ --ext .js,.jsx,.mjs,.d.ts,.ts,.tsx",
"lint:fix": "yarn lint --fix",
"lint:less": "stylelint --config=.ci/linters/.stylintrc --syntax less **/*.less",
"lint:less:fix": "yarn lint:less --fix",
"ncu": "ncu -u --target minor",
"ncu:patch": "ncu -u --target patch",
"prebuild": "yarn run clean",
"prettier": "prettier --config=.ci/linters/prettier.config.js --ignore-path=.ci/linters/.prettierignore",
"prettier:fix": "yarn prettier:lint --write=true",
"prettier:lint": "yarn prettier '**/*.{js?(on),ts?(x),scss,md,y?(a)ml,gql,graphql?(s),less,mjml}' --write=false --list-different"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/infosisarg/commitlint-config.git"
},
"keywords": [
"commitlint",
"git",
"commits",
"infosisarg"
],
"bugs": {
"url": "https://github.com/infosisarg/commitlint-config/issues"
},
"homepage": "https://github.com/infosisarg/commitlint-config#readme",
"dependencies": {
"@commitlint/cli": "^12.1.1",
"@commitlint/config-conventional": "^13.1.1"
},
"devDependencies": {
"@babel/eslint-parser": "^7.13.14",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"babel-cli": "^6.26.0",
"eslint": "^7.24.0",
"eslint-config-prettier": "^8.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-promise": "^5.1.0",
"husky": "^6.0.0",
"lint-staged": "^10.5.4",
"prettier": "^2.2.1",
"prettier-tslint": "^0.4.2",
"rimraf": "^3.0.2",
"semantic-release": "^17.4.2",
"shelljs": "^0.8.4",
"stylelint": "^13.12.0",
"stylelint-config-standard": "^21.0.0",
"ts-node": "^9.1.1",
"typescript": "^4.2.4"
},
"prettier": ".ci/linters/prettier.config.js"
}