-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
80 lines (80 loc) · 2.03 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
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "@hansogj/maybe",
"version": "2.2.23",
"description": "",
"main": "dist/maybe.js",
"types": "dist/maybe.d.ts",
"files": [
"README.md",
"dist/",
"LICENSE"
],
"scripts": {
"preinstall": "npx only-allow pnpm",
"prebuild": "rm -rf dist",
"build": "webpack --mode=production --node-env=production",
"test": "jest",
"lint": "npx eslint src --ext .js,.ts",
"prepack": "pnpm run lint && pnpm run test && pnpm run build",
"update": "npx npm-check-updates -i -t minor && pnpm run post:update",
"update:majors": "npx npm-check-updates -i -t latest && pnpm run post:update",
"post:update": "rm -rfv node_modules && pnpm prune && pnpm i"
},
"keywords": [
"maybe",
"safe",
"secure code",
"defined",
"not null",
"monad",
"typescript"
],
"repository": {
"type": "git",
"url": "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.24.5",
"@babel/preset-env": "7.24.5",
"@babel/preset-typescript": "7.24.1",
"@types/jest": "29.5.12",
"@typescript-eslint/eslint-plugin": "6.21.0",
"@typescript-eslint/parser": "6.21.0",
"babel-loader": "9.1.3",
"eslint": "8.57.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-airbnb-base": "15.0.0",
"eslint-config-airbnb-typescript": "17.1.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-prettier": "5.1.3",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"prettier": "3.2.5",
"ts-loader": "9.5.1",
"ts-node": "10.9.2",
"typescript": "5.4.5",
"webpack": "5.91.0",
"webpack-cli": "5.1.4"
},
"engines": {
"node": "^18 || ^20 || ^ 21"
},
"volta": {
"node": "21.7.3"
}
}