-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.46 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
{
"name": "pipeable-result",
"version": "0.1.1",
"description": "Small and simple pipeable Result library in TypeScript to handle errors in a more functional way",
"main": "out/src/index.js",
"types": "out/src/index.d.ts",
"directories": {
"test": "tests"
},
"scripts": {
"test": "jest",
"start": "node out/app.js",
"prestart": "npm run build",
"build": "tsc",
"publish": "npm run build && npm publish"
},
"exports": {
".": {
"import": "./out/src/index.js",
"require": "./out/src/index.js",
"types": "./out/src/index.d.ts"
},
"./operators": {
"import": "./out/src/operators/index.js",
"require": "./out/src/operators/index.js",
"types": "./out/src/operators/index.d.ts"
}
},
"files": [
"out/**/*",
"README.md",
"LICENSE"
],
"repository": {
"type": "git",
"url": "git+https://github.com/Kheyzell/PipeableResult.git"
},
"keywords": [
"library",
"npm",
"TypeScript",
"typescript",
"Result",
"Pipeable",
"Errors"
],
"author": "Kheyzell",
"license": "MIT",
"bugs": {
"url": "https://github.com/Kheyzell/PipeableResult/issues"
},
"homepage": "https://github.com/Kheyzell/PipeableResult#readme",
"dependencies": {},
"devDependencies": {
"jest": "^29.7.0",
"@babel/preset-env": "^7.26.0",
"@babel/preset-typescript": "^7.26.0",
"@types/jest": "^29.5.14",
"babel-jest": "^29.7.0",
"typescript": "^5.7.2"
}
}