-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
104 lines (104 loc) · 2.6 KB
/
package.json
File metadata and controls
104 lines (104 loc) · 2.6 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "array-fp-utils",
"version": "0.7.0",
"description": "Array utilities for functional programming in TypeScript.",
"keywords": [
"fp-ts",
"array"
],
"author": {
"name": "Causaly Team",
"email": "front-end@causaly.com",
"url": "https://www.causaly.com"
},
"contributors": [
{
"name": "Dimitrios C. Michalakos",
"email": "dimitris@jmike.gr",
"url": "https://github.com/jmike"
},
{
"name": "Nikolaos Tsompanidis",
"email": "nikostsompanides@gmail.com",
"url": "https://github.com/NikosTsompanides"
},
{
"name": "Konstantinos Liberopoulos",
"email": "libekonst@gmail.com",
"url": "https://github.com/libekonst"
}
],
"repository": {
"type": "git",
"url": "git://github.com/causaly/array-fp-utils.git"
},
"license": "MIT",
"publishConfig": {
"access": "public"
},
"sideEffects": false,
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.js",
"import": "./dist/index.mjs"
}
},
"files": [
"dist"
],
"engines": {
"node": ">=16.0.0"
},
"scripts": {
"typecheck": "tsc --noEmit",
"build": "tsup --config ./tsup.config.ts",
"lint": "eslint lib --ext .ts",
"format": "prettier --config ./.prettierrc --ignore-path .gitignore -w .",
"test": "jest",
"coverage": "jest --coverage",
"changeset": "changeset",
"prerelease": "npm run build && npm run test",
"release": "changeset publish"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --config ./.prettierrc --write"
]
},
"devDependencies": {
"@changesets/changelog-github": "^0.4.6",
"@changesets/cli": "^2.24.4",
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.1.0",
"@types/jest": "^29.0.3",
"@types/node": "^18.7.14",
"@typescript-eslint/eslint-plugin": "^5.36.1",
"@typescript-eslint/parser": "^5.36.1",
"concurrently": "^7.3.0",
"eslint": "^8.23.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-simple-import-sort": "^7.0.0",
"fp-ts": "^2.12.3",
"husky": "4",
"jest": "^29.0.1",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"rimraf": "^3.0.0",
"ts-expect": "^1.3.0",
"ts-jest": "^29.0.2",
"tsup": "^8.3.6",
"typescript": "^5.0.4"
}
}