-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.38 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
{
"name": "maybe-ts",
"version": "1.0.0",
"description": "Safe handling of null and undefined in Typescript and Javascript",
"keywords": [
"maybe",
"typescript",
"optional",
"result",
"fp",
"undefined",
"null",
"promise"
],
"author": "Rackspace Technology",
"repository": {
"type": "git",
"url": "git+https://github.com/rackspace/maybe-ts.git"
},
"bugs": {
"url": "https://github.com/rackspace/maybe-ts/issues"
},
"homepage": "https://github.com/rackspace/maybe-ts",
"contributors": [
"Adam Fanello <[email protected]>"
],
"license": "MIT",
"engines": {
"node": ">=20.11.0 <21",
"npm": ">=10.3.0 <11"
},
"devDependencies": {
"@eslint/js": "^9.18.0",
"@types/jest": "^29.5.14",
"eslint": "^9.18.0",
"globals": "^15.14.0",
"jest": "^29.7.0",
"prettier": "^3.4.2",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"tsup": "^8.3.5",
"typescript": "5.5.x",
"typescript-eslint": "^8.21.0"
},
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"analyze": "npm run build && npm run lint && npm test && npm run prettier",
"clean": "rm -r dist node_modules",
"build": "tsup",
"dev": "tsup --watch",
"lint": "eslint src",
"prettier": "prettier --check src",
"test": "jest"
}
}