-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathpackage.json
73 lines (73 loc) · 2.04 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
{
"name": "sweet-monads",
"version": "3.3.0",
"description": "",
"main": "index.js",
"private": true,
"directories": {
"test": "tests"
},
"workspaces": [
"either",
"interfaces",
"iterator",
"maybe",
"identity"
],
"scripts": {
"test": "jest",
"format": "prettier --write .",
"lint": "eslint .",
"prepare": "husky install",
"build:either": "yarn workspace @sweet-monads/either build",
"build:maybe": "yarn workspace @sweet-monads/maybe build",
"build:identity": "yarn workspace @sweet-monads/identity build",
"build:iterator": "yarn workspace @sweet-monads/iterator build",
"build": "yarn build:either && yarn build:maybe && yarn build:identity && yarn build:iterator",
"publint:either": "publint either/build",
"publint:maybe": "publint maybe/build",
"publint:identity": "publint identity/build",
"publint:interfaces": "publint interfaces",
"publint:iterator": "publint iterator/build",
"publint": "yarn publint:interfaces && yarn publint:either && yarn publint:maybe && yarn publint:identity && yarn publint:iterator"
},
"repository": {
"type": "git",
"url": "git+https://github.com/JSMonk/sweet-monads.git"
},
"author": "JSMonk",
"license": "MIT",
"bugs": {
"url": "https://github.com/JSMonk/sweet-monads/issues"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.ts": [
"prettier --write",
"eslint --quiet"
],
"*.md": "yaspeller-ci"
},
"homepage": "https://github.com/JSMonk/sweet-monads#readme",
"devDependencies": {
"@types/jest": "^26.0.19",
"@typescript-eslint/eslint-plugin": "^4.14.2",
"@typescript-eslint/parser": "^4.14.2",
"eslint": "^7.19.0",
"eslint-config-prettier": "7.2.0",
"fast-check": "^2.10.0",
"husky": "^8.0.1",
"jest": "^29.7.0",
"lint-staged": "10.5.3",
"npm-run-all": "^4.1.5",
"prettier": "2.2.1",
"publint": "^0.1.11",
"ts-jest": "^29.1.5",
"typescript": "^4.1.3",
"yaspeller-ci": "^1.0.2"
}
}