-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
41 lines (41 loc) · 1.17 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
{
"name": "fp-ts-iter",
"homepage": "https://mpontus.github.io/fp-ts-iter/",
"version": "0.1.0",
"main": "dist/index.js",
"license": "MIT",
"peerDependencies": {
"fp-ts": "^2.9.5"
},
"dependencies": {},
"devDependencies": {
"@types/jest": "^26.0.20",
"@typescript-eslint/eslint-plugin": "^4.25.0",
"@typescript-eslint/parser": "^4.25.0",
"cspell": "^5.5.2",
"docs-ts": "^0.6.10",
"eslint": "^7.27.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"fast-check": "^2.13.0",
"fp-ts": "^2.9.5",
"jest": "^26.6.3",
"markdown-magic": "^2.0.0",
"prettier": "^2.2.1",
"prettier-plugin-jsdoc": "^0.3.13",
"ts-jest": "^26.5.3",
"typescript": "^4.2.3"
},
"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"
}
}