-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
72 lines (72 loc) · 2.03 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
{
"name": "@yi-xu-0100/conventional-commit-types-i18n",
"version": "1.6.0",
"description": "conventional-commit-types internationalization version.",
"main": "lib/src/index.js",
"types": "lib/src/index.d.ts",
"private": false,
"scripts": {
"prepare": "husky install",
"build": "npm run compile",
"compile": "rimraf lib/ && tsc",
"precompile": "npm run lint && npm run lint-check",
"coverage": "rimraf coverage/ && jest --coverage",
"test": "npm run lint && jest && npm run lint-check",
"format": "prettier --write \"**/*.{ts,md,json,yml,yaml}\"",
"format-check": "prettier --check \"**/*.{ts,md,json,yml,yaml}\"",
"lint": "npm run format && eslint --fix \"**/*.ts\"",
"lint-check": "eslint \"**/*.{ts,js}\" && npm run format-check"
},
"lint-staged": {
"**/*.{ts,js}": [
"prettier --write",
"eslint"
],
"**/*.{md,json,yml,yaml}": [
"prettier --write"
]
},
"files": [
"lib/"
],
"jest": {
"coverageDirectory": "coverage",
"preset": "ts-jest",
"testEnvironment": "node"
},
"repository": {
"type": "git",
"url": "git+https://github.com/yi-Xu-0100/conventional-commit-types-i18n.git"
},
"keywords": [
"i18n",
"commit",
"conventional-commit",
"conventional-commit-types",
"conventional-commit-types-i18n"
],
"author": "yi-xu",
"license": "MIT",
"bugs": {
"url": "https://github.com/yi-Xu-0100/conventional-commit-types-i18n/issues"
},
"homepage": "https://github.com/yi-Xu-0100/conventional-commit-types-i18n#readme",
"devDependencies": {
"@types/jest": "^27.0.0",
"@types/node": "^17.0.0",
"@typescript-eslint/eslint-plugin": "^4.15.2",
"@typescript-eslint/parser": "^4.15.2",
"eslint": "^7.20.0",
"eslint-config-alloy": "^4.1.0",
"husky": "^8.0.1",
"jest": "^26.6.3",
"lint-staged": "^13.0.0",
"pinst": "^2.1.6",
"prettier": "^2.2.1",
"rimraf": "^3.0.2",
"standard-version": "^9.1.1",
"ts-jest": "^26.5.2",
"typescript": "^4.2.2"
},
"dependencies": {}
}