-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.05 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
{
"name": "moneo-ts",
"version": "1.6.0",
"description": "monad library for typescript",
"license": "MIT",
"author": "patrickap",
"repository": "https://github.com/patrickap/moneo-ts.git",
"type": "commonjs",
"main": "dist/index",
"types": "dist/index",
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"build": "tsc && typedoc",
"build:update": "npm run build && git add . && git commit -m 'chore: new build' && git push",
"release": "npm run test && npm run build:update && dotenv semantic-release",
"release:dry": "dotenv semantic-release -- -d"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.2",
"@semantic-release/git": "^10.0.1",
"@types/jest": "^29.4.0",
"dotenv-cli": "^7.0.0",
"jest": "^29.5.0",
"semantic-release": "^20.1.1",
"ts-jest": "^29.0.5",
"typedoc": "^0.23.26",
"typescript": "^4.9.5"
},
"keywords": [
"monad",
"adt",
"functional",
"fp",
"typescript",
"pure",
"option",
"either",
"io",
"async"
]
}