-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.42 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
{
"name": "fp-ts-foldl",
"homepage": "https://github.com/ptrfrncsmrph/fp-ts-foldl",
"version": "0.3.11",
"main": "dist/index.js",
"license": "MIT",
"peerDependencies": {
"fp-ts": "^2.9.5"
},
"devDependencies": {
"@types/immutable": "^3.8.7",
"@types/jest": "^26.0.20",
"@types/ramda": "^0.28.15",
"@types/transducers-js": "^0.4.4",
"@typescript-eslint/eslint-plugin": "^4.25.0",
"@typescript-eslint/parser": "^4.25.0",
"benny": "^3.7.1",
"cspell": "^5.5.2",
"docs-ts": "^0.6.10",
"eslint": "^7.27.0",
"fast-check": "^2.13.0",
"fp-ts": "^2.9.5",
"immutable": "^4.1.0",
"jest": "^26.6.3",
"list": "^2.0.19",
"markdown-magic": "^2.0.0",
"prettier": "^2.2.1",
"prettier-plugin-jsdoc": "^0.3.13",
"ramda": "^0.28.0",
"transducers-js": "^0.4.174",
"ts-jest": "^26.5.3",
"typescript": "^4.7"
},
"scripts": {
"build": "tsc -p tsconfig.build.json",
"build:watch": "tsc -w -p tsconfig.build.json",
"prepublish": "yarn run build",
"pretty": "yarn run prettier --check .",
"lint": "yarn run eslint . --ext .js,.jsx,.ts,.tsx --max-warnings 0",
"test": "yarn run jest",
"test:watch": "yarn run jest --watch",
"docs": "yarn run docs-ts",
"spell": "yarn cspell '**/*.*'",
"md": "yarn run markdown"
},
"prettier": {
"arrowParens": "avoid",
"singleQuote": false,
"semi": true
},
"dependencies": {}
}