-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.15 KB
/
package.json
File metadata and controls
81 lines (81 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
78
79
80
81
{
"name": "@hansogj/maybe",
"version": "2.5.11",
"description": "",
"main": "dist/maybe.js",
"types": "dist/maybe.d.ts",
"files": [
"README.md",
"dist/",
"LICENSE"
],
"scripts": {
"build": "webpack --mode=production --node-env=production",
"depcheck": "npx depcheck --ignores=\"*airbnb*,ts-node,ts-loader,jest-environment-jsdom,webpack-cli\"",
"lint": "npx eslint src --ext .js,.ts",
"post:update": "rm -rfv node_modules && pnpm prune && pnpm i",
"prebuild": "rm -rf dist",
"preinstall": "npx only-allow pnpm",
"prepack": "pnpm run depcheck && pnpm run lint && pnpm run test && pnpm run build",
"test": "jest",
"update:majors": "npx npm-check-updates -i -t latest && pnpm run post:update",
"update": "npx npm-check-updates -i -t minor && pnpm run post:update"
},
"keywords": [
"maybe",
"safe",
"secure code",
"defined",
"not null",
"monad",
"typescript"
],
"repository": {
"type": "git",
"url": "git+https://github.com/hansogj/maybe.git"
},
"contributors": [
{
"name": "Hans Ole Gjerdrum",
"email": "hansogj@gmail.com"
},
{
"name": "Øyvind Kjeldstad Grimnes (Oyvindkg)"
}
],
"license": "ISC",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"devDependencies": {
"@babel/core": "7.28.6",
"@babel/preset-env": "7.28.6",
"@babel/preset-typescript": "7.28.5",
"@eslint/compat": "2.0.1",
"@eslint/eslintrc": "3.3.3",
"@eslint/js": "9.39.2",
"@typescript-eslint/eslint-plugin": "8.53.1",
"@typescript-eslint/parser": "8.54.0",
"depcheck": "1.4.7",
"eslint": "9.39.2",
"eslint-config-airbnb-typescript": "18.0.0",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-import": "2.32.0",
"eslint-plugin-prettier": "5.5.5",
"jest": "30.2.0",
"jest-environment-jsdom": "30.2.0",
"prettier": "3.8.1",
"ts-loader": "9.5.4",
"ts-node": "10.9.2",
"typescript": "5.9.3",
"webpack": "5.104.1",
"webpack-cli": "6.0.1"
},
"engines": {
"node": "^18 || ^20 || ^ 21 || ^ 22"
},
"volta": {
"node": "21.7.3"
}
}