-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
76 lines (76 loc) · 2.08 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
{
"name": "@relmify/jest-fp-ts",
"version": "2.1.1",
"description": "Custom Jest matchers for projects using using fp-ts and io-ts",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"/dist",
"!**/*.map",
"CHANGELOG.md",
"LICENSE",
"README.md"
],
"keywords": [
"jest",
"matchers",
"fp-ts",
"io-ts",
"typescript",
"functional"
],
"repository": {
"type": "git",
"url": "git+https://github.com/relmify/jest-fp-ts.git"
},
"author": "Leila Pearson",
"license": "MIT",
"bugs": {
"url": "https://github.com/relmify/jest-fp-ts/issues"
},
"homepage": "https://github.com/relmify/jest-fp-ts#readme",
"scripts": {
"build": "tsc",
"watch": "tsc -watch",
"clean": "rimraf dist",
"clean:jest": "jest --clear-cache --bail 0",
"lint:check": "eslint ./src --ext .ts",
"lint:fix": "eslint --fix ./src --ext .ts",
"prettier:check": "prettier --check \"src/**/*.ts\"",
"prettier:fix": "prettier --write \"src/**/*.ts\"",
"test": "jest",
"test:watch": "jest --watch",
"prepare": "npm run clean && npm run lint:check && npm run prettier:check && npm test && npm run build"
},
"dependencies": {
"@jest/expect-utils": "^29.5.0",
"expect": "^29.5.0",
"jest-get-type": "^29.4.3",
"jest-matcher-utils": "^29.5.0"
},
"peerDependencies": {
"fp-ts": "2.x",
"io-ts": "2.x"
},
"devDependencies": {
"@relmify/jest-serializer-strip-ansi": "^1.0.2",
"@types/jest": "^29.5.2",
"@types/node": "^18.16.18",
"@typescript-eslint/eslint-plugin": "^5.59.11",
"@typescript-eslint/parser": "^5.59.11",
"eslint": "^8.42.0",
"eslint-config-prettier": "^8.8.0",
"eslint-import-resolver-typescript": "^3.5.5",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-prettier": "^4.0.0",
"fp-ts": "^2.16.0",
"io-ts": "^2.2.16",
"jest": "^29.5.0",
"jest-snapshot-serializer-raw": "^1.2.0",
"jest-watch-toggle-config": "^3.0.0",
"prettier": "^2.8.8",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"typescript": "~5.0.4"
}
}