-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.53 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
{
"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 <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Akurganow/array-functions/issues"
},
"homepage": "https://github.com/Akurganow/array-functions#readme",
"devDependencies": {
"@release-it/conventional-changelog": "^8.0.1",
"@types/jest": "^29.5.5",
"@typescript-eslint/eslint-plugin": "^6.7.4",
"dotenv-cli": "^7.3.0",
"eslint": "^8.51.0",
"jest": "^29.7.0",
"release-it": "^17.0.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
},
"dependencies": {
"@plq/is": "^1.3.0"
}
}