-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.15 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.15 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
72
73
74
75
76
77
{
"name": "@softwareventures/array",
"version": "0.0.0-development",
"description": "Pure functional array manipulation and traversal",
"keywords": [
"array",
"functional",
"lambda",
"typescript"
],
"author": "Daniel Cassidy <mail@danielcassidy.me.uk>",
"homepage": "https://github.com/softwareventures/array",
"bugs": "https://github.com/softwareventures/array/issues",
"repository": "github:softwareventures/array",
"license": "ISC",
"scripts": {
"commit": "cz",
"fix": "tsc --noEmit && eslint . --fix && prettier --write .",
"postinstall": "husky",
"lint": "tsc --noEmit && eslint . && prettier --check .",
"prepack": "tsc",
"test": "ava"
},
"sideEffects": false,
"engines": {
"node": "^20 || ^22 || ^24 || >=25"
},
"dependencies": {
"@softwareventures/nullable": "^1.0.0 || ^2.0.0 || ^3.0.0",
"@softwareventures/ordered": "^1.1.0 || ^2.0.0",
"tslib": "^2.0.0"
},
"devDependencies": {
"@commitlint/cli": "19.8.1",
"@commitlint/config-conventional": "19.8.1",
"@commitlint/cz-commitlint": "19.8.1",
"@eslint/js": "9.39.4",
"@softwareventures/eslint-config": "10.0.0",
"@softwareventures/precise-commits": "4.0.23",
"@softwareventures/prettier-config": "4.0.0",
"@softwareventures/tsconfig": "8.1.1",
"@types/node": "18.19.130",
"@typescript-eslint/eslint-plugin": "8.56.1",
"@typescript-eslint/parser": "8.56.1",
"ava": "6.4.1",
"commitizen": "4.3.1",
"eslint": "9.39.4",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-import": "2.32.0",
"eslint-plugin-jsdoc": "62.7.1",
"eslint-plugin-prefer-arrow": "1.2.3",
"eslint-plugin-sonarjs": "4.0.1",
"husky": "9.1.7",
"inquirer": "9.3.8",
"prettier": "3.8.1",
"ts-node": "10.9.2",
"typescript": "5.9.3"
},
"prettier": "@softwareventures/prettier-config",
"config": {
"commitizen": {
"path": "@commitlint/cz-commitlint"
}
},
"ava": {
"extensions": [
"ts"
],
"require": [
"ts-node/register"
]
},
"release": {
"extends": "@softwareventures/semantic-release-config"
},
"packageManager": "yarn@4.12.0"
}