-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.54 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
{
"name": "fat-arrow-ts",
"version": "0.14.0",
"description": "Fat Arrow is a library for Typed Functional Programming in TypeScript compatible with Node.js and all major browsers.",
"main": "src/index.js",
"types": "src/index.d.ts",
"scripts": {
"test": "jest",
"version": "rm -rf dist && tsc --project tsconfig.production.json && cp package.json dist && cp license dist && cp README.md dist",
"release": "np"
},
"repository": {
"type": "git",
"url": "git+https://github.com/matteoantoci/fat-arrow-ts.git"
},
"author": "Matteo Antoci",
"license": "MIT",
"bugs": {
"url": "https://github.com/matteoantoci/fat-arrow-ts/issues"
},
"homepage": "https://github.com/matteoantoci/fat-arrow-ts#readme",
"dependencies": {
"fast-deep-equal": "^3.1.3"
},
"devDependencies": {
"@babel/core": "^7.18.6",
"@babel/preset-env": "^7.18.6",
"@babel/preset-typescript": "^7.18.6",
"@types/jest": "^28.1.4",
"@types/node": "^18.0.3",
"babel-jest": "^28.1.2",
"babel-loader": "^8.2.5",
"jest": "^28.1.2",
"jest-matcher-utils": "^28.1.1",
"np": "^7.6.2",
"prettier": "^2.7.1",
"ts-node": "^10.8.2",
"tslib": "^2.4.0",
"typescript": "^4.7.4"
},
"np": {
"contents": "dist"
},
"keywords": [
"typescript",
"functional programming",
"maybe",
"result",
"either",
"adt",
"algebraic data type",
"arrow",
"kotlin",
"monad",
"functor",
"functional data structure",
"fp types",
"typeclasses",
"category theory"
]
}