-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.64 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.64 KB
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
{
"name": "@plq/array-functions",
"version": "1.5.1",
"description": "A set of frequently used functions for working with arrays, for sorting, filtering or checking the state of an array",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib"
],
"engines": {
"node": ">=16.0.0"
},
"scripts": {
"lint": "eslint ./src/**/*.ts",
"test": "jest",
"build": "tsc",
"release": "dotenv release-it"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Akurganow/array-functions.git"
},
"release-it": {
"hooks": {
"before:init": [
"npm run lint",
"npm test",
"npm run build"
],
"after:release": "echo Successfully released ${name} v${version} to ${repo.repository}."
},
"plugins": {
"@release-it/conventional-changelog": {
"preset": "conventionalcommits",
"infile": "CHANGELOG.md"
}
}
},
"keywords": [
"javascript",
"typescript",
"array",
"sort",
"filter",
"isSorted"
],
"author": "Alexander Kurganov <a.kurganow@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Akurganow/array-functions/issues"
},
"homepage": "https://github.com/Akurganow/array-functions#readme",
"devDependencies": {
"@eslint/js": "^9.32.0",
"@release-it/conventional-changelog": "^10.0.1",
"@stylistic/eslint-plugin": "^5.2.2",
"@types/jest": "^30.0.0",
"@typescript-eslint/eslint-plugin": "^8.38.0",
"@typescript-eslint/parser": "^8.38.0",
"dotenv-cli": "^10.0.0",
"eslint": "^9.32.0",
"jest": "^30.0.0",
"release-it": "^19.0.4",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.9.2"
},
"dependencies": {
"@plq/is": "^1.3.0"
}
}