forked from alikuxac/utilities
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 2.12 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
{
"name": "@alikuxac/utilities",
"version": "1.1.0",
"description": "Alikuxac Common util functions",
"main": "dist/index.js",
"scripts": {
"build": "rimraf -rf dist && tsc -p tsconfig.json",
"format": "prettier **/**/*.ts --ignore-path ./.prettierignore --write",
"lint": "eslint 'libs/**/*.ts' --fix",
"lint-staged": "lint-staged — config .lintstagedrc",
"commit": "/node_modules/cz-customizable/standalone.js",
"watch": "tsc -b src -w",
"prepare": "is-ci || husky install",
"release": "release-it"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alikuxac/utilities.git"
},
"keywords": [
"utilities",
"alikuxac"
],
"author": "Alikuxac",
"license": "MIT",
"bugs": {
"url": "https://github.com/alikuxac/utilities/issues"
},
"homepage": "https://github.com/alikuxac/utilities#readme",
"devDependencies": {
"@commitlint/cli": "^17.7.1",
"@commitlint/config-angular": "^17.7.0",
"@commitlint/config-conventional": "^17.7.0",
"@types/conventional-recommended-bump": "^6.1.1",
"@types/node": "^20.6.2",
"@typescript-eslint/eslint-plugin": "^6.7.0",
"auto-changelog": "^2.4.0",
"commitlint": "^17.7.1",
"commitlint-config-gitmoji": "^2.3.1",
"conventional-changelog-cli": "^4.1.0",
"conventional-recommended-bump": "^7.0.1",
"cz-customizable": "^7.0.0",
"eslint": "^8.49.0",
"eslint-config-marine": "^9.4.1",
"eslint-config-prettier": "^9.0.0",
"eslint-import-resolver-typescript": "^3.6.0",
"eslint-plugin-import": "^2.28.1",
"husky": "^8.0.3",
"is-ci": "^3.0.1",
"lint-staged": "^14.0.1",
"npm-run-all": "^4.1.5",
"prettier": "^3.0.3",
"pretty-quick": "^3.1.3",
"release-it": "^16.1.5",
"rimraf": "^5.0.1",
"typescript": "^5.2.2"
},
"engines": {
"node": ">=16.0.0",
"npm": ">=7.0.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"lint-staged": {
"*.ts": [
"prettier --write"
]
},
"publishConfig": {
"registry": "https://registry.npmjs.org",
"access": "public"
}
}