generated from Marius9595/boilerplate-ts
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
86 lines (86 loc) · 2.16 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
81
82
83
84
85
86
{
"name": "@leanmind/monads",
"version": "0.0.0",
"description": "A collection of monads implemented in TypeScript using object-oriented programming.",
"keywords": [
"functional-programming",
"monads",
"typescript",
"oop"
],
"main": "index.js",
"scripts": {
"analize": "npm run lint:fix && npm run compile",
"build": "npm run lint:fix && tsc",
"compile": "tsc --noEmit",
"compile:watch": "npm run compile -- --watch",
"compile:build": "tsc -b",
"lint": "eslint . --ext .ts,.tsx",
"lint:watch": "esw --color --watch",
"lint:fix": "npm run lint -- --fix",
"format": "prettier --config .prettierrc '**/*.+(ts|tsx)'",
"format:check": "npm run format -- --check",
"format:fix": "npm run format -- --write",
"test": "vitest run",
"semantic-release": "semantic-release"
},
"author": "Lean Mind",
"contributors": [
{
"name": "Mario Pinto Miranda",
"email": "mario.pinto.miranda@gmail.com",
"url": "https://mario-pinto-miranda.dev"
},
{
"name": "Miguel Ignacio Cabrera San Gil",
"email": "miguelcabsan@gmail.com",
"url": "https://myugen.dev"
}
],
"repository": {
"type": "git",
"url": "git+https://github.com/lean-mind/monads.git"
},
"bugs": {
"url": "https://github.com/lean-mind/monads/issues"
},
"license": "MIT",
"devDependencies": {
"@types/node": "^20.12.7",
"@typescript-eslint/eslint-plugin": "^7.7.0",
"@typescript-eslint/parser": "^7.7.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-watch": "^8.0.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"npm-check-updates": "^16.14.18",
"prettier": "^3.2.5",
"semantic-release": "^24.1.0",
"typescript": "^5.4.5",
"vitest": "^2.0.5"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "npm run test"
}
},
"lint-staged": {
"*.+(ts|tsx)": [
"npm run lint:fix",
"npm run compile",
"git add . "
]
},
"files": [
"dist",
"README.md",
"LICENSE",
"docs"
],
"publishConfig": {
"access": "public"
}
}