-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
57 lines (57 loc) · 1.65 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
{
"name": "logger-fp-ts",
"description": "A logger for use with fp-ts.",
"version": "0.2.2",
"license": "MIT",
"homepage": "https://github.com/thewilkybarkid/logger-fp-ts",
"repository": "github:thewilkybarkid/logger-fp-ts",
"source": "src/index.ts",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"sideEffects": false,
"dependencies": {
"chalk": "^4.1.2",
"safe-stable-stringify": "^2.3.1"
},
"peerDependencies": {
"clock-ts": "^0.1.0",
"fp-ts": "^2.13.1",
"logging-ts": "^0.3.4"
},
"devDependencies": {
"@commitlint/cli": "^16.2.3",
"@commitlint/config-conventional": "^16.2.1",
"@trivago/prettier-plugin-sort-imports": "^3.2.0",
"@tsconfig/recommended": "^1.0.1",
"@types/jest": "^27.4.1",
"@typescript-eslint/eslint-plugin": "^5.16.0",
"@typescript-eslint/parser": "^5.16.0",
"clock-ts": "^0.1.0",
"del-cli": "^4.0.1",
"docs-ts": "^0.6.10",
"eslint": "^8.11.0",
"eslint-config-prettier": "^8.5.0",
"fast-check": "^2.23.2",
"fp-ts": "^2.13.1",
"husky": "^7.0.4",
"logging-ts": "^0.3.4",
"prettier": "^2.6.0",
"prettier-plugin-sh": "^0.8.1",
"sortobject": "^4.16.0",
"standard-version": "^9.3.2",
"ts-jest": "^27.1.3",
"typescript": "^4.6.2"
},
"scripts": {
"prebuild": "del dist",
"build": "tsc --project tsconfig.build.json",
"docs": "docs-ts",
"format": "prettier --ignore-unknown --check '**'",
"format:fix": "npm run format -- --write",
"lint": "eslint .",
"prepare": "which husky && husky install || true",
"release": "standard-version --sign",
"test": "jest",
"typecheck": "tsc --noEmit"
}
}