-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
57 lines (57 loc) · 1.36 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": "eslint-plugin-fp-ts",
"version": "0.3.2",
"description": "fp-ts ESLint rules",
"keywords": [
"eslint",
"eslintplugin",
"eslint-plugin",
"fp-ts"
],
"author": "buildo",
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "https://github.com/buildo/eslint-plugin-fp-ts"
},
"scripts": {
"prepare": "npm run build",
"preversion": "yarn lint && yarn test && yarn build",
"build": "rimraf lib && yarn tsc",
"pretest": "yarn --cwd tests/fixtures/fp-ts-project install",
"test": "jest",
"lint": "eslint src/**/*.ts"
},
"files": [
"lib"
],
"dependencies": {
"@typescript-eslint/experimental-utils": "^5.0.0",
"@typescript-eslint/typescript-estree": "^5.22.0",
"estraverse": "^5.2.0",
"fp-ts": "^2.9.3",
"recast": "^0.20.4"
},
"devDependencies": {
"@types/astring": "^1.3.0",
"@types/common-tags": "^1.8.0",
"@types/estraverse": "^5.1.0",
"@types/node": "^17.0.31",
"@types/requireindex": "^1.2.0",
"@typescript-eslint/parser": "^5.0.0",
"common-tags": "^1.8.0",
"eslint": "^8.0.0",
"eslint-plugin-fp-ts": "link:./lib",
"jest": "^26.6.3",
"rimraf": "^3.0.2",
"ts-jest": "^26.4.4",
"typescript": "^4.1.3"
},
"peerDependencies": {
"eslint": "^8.0.0"
},
"engines": {
"node": ">=0.10.0"
},
"license": "MIT"
}